Package com.legislate.model
Enum TemplateVariable.TypeEnum
- java.lang.Object
-
- java.lang.Enum<TemplateVariable.TypeEnum>
-
- com.legislate.model.TemplateVariable.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TemplateVariable.TypeEnum>
- Enclosing class:
- TemplateVariable
public static enum TemplateVariable.TypeEnum extends Enum<TemplateVariable.TypeEnum>
Gets or Sets type
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTemplateVariable.TypeEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPOSITE_PARAMFRAGMENTPATH_VARIABLEREQUEST_PARAMREQUEST_PARAM_CONTINUEDSEGMENT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TemplateVariable.TypeEnumfromValue(String input)StringgetValue()StringtoString()static TemplateVariable.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TemplateVariable.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPOSITE_PARAM
public static final TemplateVariable.TypeEnum COMPOSITE_PARAM
-
FRAGMENT
public static final TemplateVariable.TypeEnum FRAGMENT
-
PATH_VARIABLE
public static final TemplateVariable.TypeEnum PATH_VARIABLE
-
REQUEST_PARAM
public static final TemplateVariable.TypeEnum REQUEST_PARAM
-
REQUEST_PARAM_CONTINUED
public static final TemplateVariable.TypeEnum REQUEST_PARAM_CONTINUED
-
SEGMENT
public static final TemplateVariable.TypeEnum SEGMENT
-
-
Method Detail
-
values
public static TemplateVariable.TypeEnum[] 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 (TemplateVariable.TypeEnum c : TemplateVariable.TypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TemplateVariable.TypeEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<TemplateVariable.TypeEnum>
-
fromValue
public static TemplateVariable.TypeEnum fromValue(String input)
-
-