- java.lang.Object
-
- java.lang.Enum<RestMethodData.ParameterType>
-
- net.oneandone.neberus.parse.RestMethodData.ParameterType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RestMethodData.ParameterType>
- Enclosing class:
- RestMethodData
public static enum RestMethodData.ParameterType extends java.lang.Enum<RestMethodData.ParameterType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RestMethodData.ParameterTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RestMethodData.ParameterType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PATH
public static final RestMethodData.ParameterType PATH
-
QUERY
public static final RestMethodData.ParameterType QUERY
-
BODY
public static final RestMethodData.ParameterType BODY
-
HEADER
public static final RestMethodData.ParameterType HEADER
-
UNSET
public static final RestMethodData.ParameterType UNSET
-
-
Method Detail
-
values
public static RestMethodData.ParameterType[] 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 (RestMethodData.ParameterType c : RestMethodData.ParameterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RestMethodData.ParameterType 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
-
-