public enum AttachableCategoryEnum extends Enum<AttachableCategoryEnum>
Java class for AttachableCategoryEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AttachableCategoryEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Image"/>
<enumeration value="Signature"/>
<enumeration value="Contact Photo"/>
<enumeration value="Receipt"/>
<enumeration value="Document"/>
<enumeration value="Sound"/>
<enumeration value="Other"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CONTACT_PHOTO |
DOCUMENT |
IMAGE |
OTHER |
RECEIPT |
SIGNATURE |
SOUND |
| Modifier and Type | Method and Description |
|---|---|
static AttachableCategoryEnum |
fromValue(String v) |
String |
value() |
static AttachableCategoryEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttachableCategoryEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttachableCategoryEnum IMAGE
public static final AttachableCategoryEnum SIGNATURE
public static final AttachableCategoryEnum CONTACT_PHOTO
public static final AttachableCategoryEnum RECEIPT
public static final AttachableCategoryEnum DOCUMENT
public static final AttachableCategoryEnum SOUND
public static final AttachableCategoryEnum OTHER
public static AttachableCategoryEnum[] values()
for (AttachableCategoryEnum c : AttachableCategoryEnum.values()) System.out.println(c);
public static AttachableCategoryEnum valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static AttachableCategoryEnum fromValue(String v)
Copyright © 2017. All rights reserved.