public static enum Document.SourceCase extends java.lang.Enum<Document.SourceCase> implements Internal.EnumLite
| Enum Constant and Description | 
|---|
| CONTENT | 
| GCS_CONTENT_URI | 
| SOURCE_NOT_SET | 
| Modifier and Type | Method and Description | 
|---|---|
| static Document.SourceCase | forNumber(int value) | 
| int | getNumber() | 
| static Document.SourceCase | valueOf(int value)Deprecated. 
 Use  forNumber(int)instead. | 
| static Document.SourceCase | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Document.SourceCase[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Document.SourceCase CONTENT
public static final Document.SourceCase GCS_CONTENT_URI
public static final Document.SourceCase SOURCE_NOT_SET
public static Document.SourceCase[] values()
for (Document.SourceCase c : Document.SourceCase.values()) System.out.println(c);
public static Document.SourceCase 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 null@Deprecated public static Document.SourceCase valueOf(int value)
forNumber(int) instead.public static Document.SourceCase forNumber(int value)
public int getNumber()
getNumber in interface Internal.EnumLite