Package org.eclipse.jetty.webapp
Enum MetaDataComplete
- java.lang.Object
-
- java.lang.Enum<MetaDataComplete>
-
- org.eclipse.jetty.webapp.MetaDataComplete
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MetaDataComplete>
public enum MetaDataComplete extends java.lang.Enum<MetaDataComplete>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MetaDataComplete
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MetaDataComplete[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NotSet
public static final MetaDataComplete NotSet
-
True
public static final MetaDataComplete True
-
False
public static final MetaDataComplete False
-
-
Method Detail
-
values
public static MetaDataComplete[] 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 (MetaDataComplete c : MetaDataComplete.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MetaDataComplete valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-