Package thredds.core
Enum ConfigCatalogInitialization.ReadMode
- java.lang.Object
-
- java.lang.Enum<ConfigCatalogInitialization.ReadMode>
-
- thredds.core.ConfigCatalogInitialization.ReadMode
-
- All Implemented Interfaces:
Serializable,Comparable<ConfigCatalogInitialization.ReadMode>
- Enclosing class:
- ConfigCatalogInitialization
public static enum ConfigCatalogInitialization.ReadMode extends Enum<ConfigCatalogInitialization.ReadMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description alwayschecktriggerOnly
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConfigCatalogInitialization.ReadModeget(String name)static ConfigCatalogInitialization.ReadModevalueOf(String name)Returns the enum constant of this type with the specified name.static ConfigCatalogInitialization.ReadMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
always
public static final ConfigCatalogInitialization.ReadMode always
-
check
public static final ConfigCatalogInitialization.ReadMode check
-
triggerOnly
public static final ConfigCatalogInitialization.ReadMode triggerOnly
-
-
Method Detail
-
values
public static ConfigCatalogInitialization.ReadMode[] 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 (ConfigCatalogInitialization.ReadMode c : ConfigCatalogInitialization.ReadMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConfigCatalogInitialization.ReadMode 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
-
get
public static ConfigCatalogInitialization.ReadMode get(String name)
-
-