|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Reliability>
com.kuka.nav.Reliability
public enum Reliability
Represents the quality of an estimation.
| Enum Constant Summary | |
|---|---|
RELIABLE
The estimated state can be considered reliable. |
|
UNDECIDED
The quality of the estimated state has not been determined. |
|
UNRELIABLE
The estimated state should not be relied upon. |
|
| Method Summary | |
|---|---|
String |
getDisplayName()
Returns a language dependent display name for this state. |
static Reliability |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Reliability[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Reliability RELIABLE
public static final Reliability UNDECIDED
public static final Reliability UNRELIABLE
| Method Detail |
|---|
public static Reliability[] values()
for (Reliability c : Reliability.values()) System.out.println(c);
public static Reliability valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String getDisplayName()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||