public enum DataLocality extends java.lang.Enum<DataLocality>
| Enum Constant and Description |
|---|
LOCAL |
LOCAL_UNCERTAIN |
NOT_LOCAL |
NOT_LOCAL_UNCERTAIN |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isLocal() |
boolean |
isUncertain() |
static DataLocality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataLocality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataLocality LOCAL
public static final DataLocality NOT_LOCAL
public static final DataLocality LOCAL_UNCERTAIN
public static final DataLocality NOT_LOCAL_UNCERTAIN
public static DataLocality[] values()
for (DataLocality c : DataLocality.values()) System.out.println(c);
public static DataLocality 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 nullpublic boolean isLocal()
public boolean isUncertain()