public static enum Schema.AccessMode extends Enum<Schema.AccessMode>
| Enum Constant and Description | 
|---|
AUTO  | 
READ_ONLY  | 
READ_WRITE  | 
WRITE_ONLY  | 
| Modifier and Type | Method and Description | 
|---|---|
static Schema.AccessMode | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static Schema.AccessMode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Schema.AccessMode AUTO
public static final Schema.AccessMode READ_ONLY
public static final Schema.AccessMode WRITE_ONLY
public static final Schema.AccessMode READ_WRITE
public static Schema.AccessMode[] values()
for (Schema.AccessMode c : Schema.AccessMode.values()) System.out.println(c);
public static Schema.AccessMode 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 nullCopyright © 2018. All rights reserved.