com.metaio.sdk.jni
Enum TrackingValuesState

java.lang.Object
  extended by java.lang.Enum<TrackingValuesState>
      extended by com.metaio.sdk.jni.TrackingValuesState
All Implemented Interfaces:
Serializable, Comparable<TrackingValuesState>

public enum TrackingValuesState
extends Enum<TrackingValuesState>


Enum Constant Summary
TrackingValuesStateExtrapolated
           
TrackingValuesStateFound
           
TrackingValuesStateLost
           
TrackingValuesStateNotTracking
           
TrackingValuesStateTracking
           
 
Method Summary
static TrackingValuesState swigToEnum(int swigValue)
           
 int swigValue()
           
static TrackingValuesState valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TrackingValuesState[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TrackingValuesStateNotTracking

public static final TrackingValuesState TrackingValuesStateNotTracking

TrackingValuesStateLost

public static final TrackingValuesState TrackingValuesStateLost

TrackingValuesStateExtrapolated

public static final TrackingValuesState TrackingValuesStateExtrapolated

TrackingValuesStateFound

public static final TrackingValuesState TrackingValuesStateFound

TrackingValuesStateTracking

public static final TrackingValuesState TrackingValuesStateTracking
Method Detail

values

public static TrackingValuesState[] 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 (TrackingValuesState c : TrackingValuesState.values())
    System.out.println(c);

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

valueOf

public static TrackingValuesState 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

swigValue

public final int swigValue()

swigToEnum

public static TrackingValuesState swigToEnum(int swigValue)