org.sequalite.generator
Enum POJOTag
java.lang.Object
java.lang.Enum<POJOTag>
org.sequalite.generator.POJOTag
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<POJOTag>
public enum POJOTag
- extends java.lang.Enum<POJOTag>
Method Summary |
java.lang.String |
tag()
|
static POJOTag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static POJOTag[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
PACKAGE_NAME
public static final POJOTag PACKAGE_NAME
GENERATOR_SIGNATURE
public static final POJOTag GENERATOR_SIGNATURE
CLASS_NAME
public static final POJOTag CLASS_NAME
TYPE
public static final POJOTag TYPE
MEMBER_NAME
public static final POJOTag MEMBER_NAME
INITCAP_MEMBER_NAME
public static final POJOTag INITCAP_MEMBER_NAME
values
public static final POJOTag[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(POJOTag c : POJOTag.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static POJOTag 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 name
tag
public java.lang.String tag()