public enum View extends Enum<View>
| Enum Constant and Description |
|---|
COLUMN_VIEW |
TABLE_VIEW |
| Modifier and Type | Method and Description |
|---|---|
static View |
fromString(String text) |
String |
getValue() |
static View |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static View[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final View TABLE_VIEW
public static final View COLUMN_VIEW
public static View[] values()
for (View c : View.values()) System.out.println(c);
public static View 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 getValue()
Copyright © 2018–2019 ODPi. All rights reserved.