public enum DocumentVariableType extends java.lang.Enum<DocumentVariableType>
| Enum Constant and Description |
|---|
BARCODE |
CONST |
CONTRACT_PARAM |
DATE |
NONE |
SQL |
URL |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getTitle() |
static DocumentVariableType |
getType(int type) |
int |
getTypeId() |
java.lang.String |
toString() |
static DocumentVariableType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DocumentVariableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentVariableType NONE
public static final DocumentVariableType CONST
public static final DocumentVariableType CONTRACT_PARAM
public static final DocumentVariableType DATE
public static final DocumentVariableType URL
public static final DocumentVariableType SQL
public static final DocumentVariableType BARCODE
public static DocumentVariableType[] values()
for (DocumentVariableType c : DocumentVariableType.values()) System.out.println(c);
public static DocumentVariableType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getTypeId()
public java.lang.String getTitle()
public java.lang.String toString()
toString in class java.lang.Enum<DocumentVariableType>public static DocumentVariableType getType(int type)