public static enum TableAccessMap.Mode extends Enum<TableAccessMap.Mode>
| Enum Constant and Description |
|---|
NO_ACCESS
Table is not accessed at all.
|
READ_ACCESS
Table is accessed for read only.
|
READWRITE_ACCESS
Table is accessed for both read and write.
|
WRITE_ACCESS
Table is accessed for write only.
|
| Modifier and Type | Method and Description |
|---|---|
static TableAccessMap.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableAccessMap.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableAccessMap.Mode NO_ACCESS
public static final TableAccessMap.Mode READ_ACCESS
public static final TableAccessMap.Mode WRITE_ACCESS
public static final TableAccessMap.Mode READWRITE_ACCESS
public static TableAccessMap.Mode[] values()
for (TableAccessMap.Mode c : TableAccessMap.Mode.values()) System.out.println(c);
public static TableAccessMap.Mode 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 © 2012–2015 The Apache Software Foundation. All rights reserved.