Enum AbstractInvestigatorTab.SerializationOption
- java.lang.Object
-
- java.lang.Enum<AbstractInvestigatorTab.SerializationOption>
-
- adams.gui.tools.wekainvestigator.tab.AbstractInvestigatorTab.SerializationOption
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractInvestigatorTab.SerializationOption>
- Enclosing class:
- AbstractInvestigatorTab
public static enum AbstractInvestigatorTab.SerializationOption extends Enum<AbstractInvestigatorTab.SerializationOption>
options for serialization.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATASETS
GUI
HISTORY
PARAMETERS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractInvestigatorTab.SerializationOption
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractInvestigatorTab.SerializationOption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARAMETERS
public static final AbstractInvestigatorTab.SerializationOption PARAMETERS
-
DATASETS
public static final AbstractInvestigatorTab.SerializationOption DATASETS
-
HISTORY
public static final AbstractInvestigatorTab.SerializationOption HISTORY
-
GUI
public static final AbstractInvestigatorTab.SerializationOption GUI
-
-
Method Detail
-
values
public static AbstractInvestigatorTab.SerializationOption[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AbstractInvestigatorTab.SerializationOption c : AbstractInvestigatorTab.SerializationOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractInvestigatorTab.SerializationOption valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-