Package net.sf.basedb.plugins
Enum Base1PluginExecuter.Base1JobParameterType
- java.lang.Object
-
- java.lang.Enum<Base1PluginExecuter.Base1JobParameterType>
-
- net.sf.basedb.plugins.Base1PluginExecuter.Base1JobParameterType
-
- All Implemented Interfaces:
Serializable
,Comparable<Base1PluginExecuter.Base1JobParameterType>
- Enclosing class:
- Base1PluginExecuter
private static enum Base1PluginExecuter.Base1JobParameterType extends Enum<Base1PluginExecuter.Base1JobParameterType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANNOTATION
ENUMERATION
FLOAT
HIDDEN_STRING
INTEGER
STRING
TEXT
-
Field Summary
Fields Modifier and Type Field Description private char
c
-
Constructor Summary
Constructors Modifier Constructor Description private
Base1JobParameterType(char c)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Base1PluginExecuter.Base1JobParameterType
get(char c)
String
toString()
static Base1PluginExecuter.Base1JobParameterType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Base1PluginExecuter.Base1JobParameterType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HIDDEN_STRING
public static final Base1PluginExecuter.Base1JobParameterType HIDDEN_STRING
-
STRING
public static final Base1PluginExecuter.Base1JobParameterType STRING
-
INTEGER
public static final Base1PluginExecuter.Base1JobParameterType INTEGER
-
FLOAT
public static final Base1PluginExecuter.Base1JobParameterType FLOAT
-
TEXT
public static final Base1PluginExecuter.Base1JobParameterType TEXT
-
ANNOTATION
public static final Base1PluginExecuter.Base1JobParameterType ANNOTATION
-
ENUMERATION
public static final Base1PluginExecuter.Base1JobParameterType ENUMERATION
-
-
Method Detail
-
values
public static Base1PluginExecuter.Base1JobParameterType[] 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 (Base1PluginExecuter.Base1JobParameterType c : Base1PluginExecuter.Base1JobParameterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Base1PluginExecuter.Base1JobParameterType 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 Base1PluginExecuter.Base1JobParameterType get(char c)
-
toString
public String toString()
- Overrides:
toString
in classEnum<Base1PluginExecuter.Base1JobParameterType>
-
-