public enum DataLocality extends 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(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(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 boolean isLocal()
public boolean isUncertain()
Copyright © 2017 JBoss, a division of Red Hat. All rights reserved.