Package org.n52.svalbard.encode
Enum EncoderFlags
- java.lang.Object
-
- java.lang.Enum<EncoderFlags>
-
- org.n52.svalbard.encode.EncoderFlags
-
- All Implemented Interfaces:
Serializable,Comparable<EncoderFlags>
public enum EncoderFlags extends Enum<EncoderFlags>
TODO JavaDoc
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ENCODER_REPOSITORYENCODING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EncoderFlagsvalueOf(String name)Returns the enum constant of this type with the specified name.static EncoderFlags[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENCODING
public static final EncoderFlags ENCODING
-
ENCODER_REPOSITORY
public static final EncoderFlags ENCODER_REPOSITORY
-
-
Method Detail
-
values
public static EncoderFlags[] 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 (EncoderFlags c : EncoderFlags.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EncoderFlags 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
-
-