public enum ConfidenceLevel extends Enum<ConfidenceLevel> implements Serializable
| Enum Constant and Description |
|---|
AdHoc
The data comes from an ad hoc process.
|
Authoritative
The data comes from an authoritative source.
|
Derived
The data is derived from other data through an analytical process.
|
Obsolete
The data comes from an obsolete source and must no longer be used.
|
Other
Another confidence level.
|
Transactional
The data comes from a transactional system so it may have a narrow scope.
|
Unclassified
There is no assessment of the confidence level of this data.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription()
Return the description for the enum.
|
String |
getName()
Return the descriptive name for the ConfidenceLevel enum instance
|
int |
getOrdinal()
Return the numerical value for the enum.
|
static ConfidenceLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfidenceLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfidenceLevel Unclassified
public static final ConfidenceLevel AdHoc
public static final ConfidenceLevel Transactional
public static final ConfidenceLevel Authoritative
public static final ConfidenceLevel Derived
public static final ConfidenceLevel Obsolete
public static final ConfidenceLevel Other
public static ConfidenceLevel[] values()
for (ConfidenceLevel c : ConfidenceLevel.values()) System.out.println(c);
public static ConfidenceLevel 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 int getOrdinal()
public String getDescription()
public String getName()
Copyright © 2017–2018 ODPi. All rights reserved.