public static enum ObjectField.BusinessType extends java.lang.Enum<ObjectField.BusinessType>
Enum Constant and Description |
---|
ATTACHMENT |
BOOLEAN |
DATE |
DECIMAL |
INTEGER |
LONG_INTEGER |
LONG_TEXT |
PICKLIST |
PRECISION_DECIMAL |
RELATIONSHIP |
RICH_TEXT |
TEXT |
Modifier and Type | Method and Description |
---|---|
static ObjectField.BusinessType |
create(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static ObjectField.BusinessType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectField.BusinessType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectField.BusinessType ATTACHMENT
public static final ObjectField.BusinessType BOOLEAN
public static final ObjectField.BusinessType DATE
public static final ObjectField.BusinessType DECIMAL
public static final ObjectField.BusinessType INTEGER
public static final ObjectField.BusinessType LONG_INTEGER
public static final ObjectField.BusinessType LONG_TEXT
public static final ObjectField.BusinessType PICKLIST
public static final ObjectField.BusinessType PRECISION_DECIMAL
public static final ObjectField.BusinessType RELATIONSHIP
public static final ObjectField.BusinessType RICH_TEXT
public static final ObjectField.BusinessType TEXT
public static ObjectField.BusinessType[] values()
for (ObjectField.BusinessType c : ObjectField.BusinessType.values()) System.out.println(c);
public static ObjectField.BusinessType 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 static ObjectField.BusinessType create(java.lang.String value)
public java.lang.String getValue()
public java.lang.String toString()
toString
in class java.lang.Enum<ObjectField.BusinessType>