com.kuka.nav
Enum Reliability

java.lang.Object
  extended by java.lang.Enum<Reliability>
      extended by com.kuka.nav.Reliability
All Implemented Interfaces:
Serializable, Comparable<Reliability>

public enum Reliability
extends 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

RELIABLE

public static final Reliability RELIABLE
The estimated state can be considered reliable.


UNDECIDED

public static final Reliability UNDECIDED
The quality of the estimated state has not been determined.


UNRELIABLE

public static final Reliability UNRELIABLE
The estimated state should not be relied upon.

Method Detail

values

public static Reliability[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Reliability c : Reliability.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Reliability valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getDisplayName

public String getDisplayName()
Returns a language dependent display name for this state.

Returns:
a language dependent display name for this state


Copyright © 2019. All rights reserved.