net.sf.marineapi.nmea.util
Enum TargetStatus

java.lang.Object
  extended by java.lang.Enum<TargetStatus>
      extended by net.sf.marineapi.nmea.util.TargetStatus
All Implemented Interfaces:
Serializable, Comparable<TargetStatus>

public enum TargetStatus
extends Enum<TargetStatus>

Defines the status of a target reported in a TTM sentence.

Author:
Johan Bergkvist
See Also:
TTMSentence

Enum Constant Summary
LOST
           
QUERY
           
TRACKING
           
 
Method Summary
 char toChar()
          Returns the corresponding char constant.
static TargetStatus valueOf(char c)
          Get the enum corresponding to specified char.
static TargetStatus valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TargetStatus[] 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

QUERY

public static final TargetStatus QUERY

LOST

public static final TargetStatus LOST

TRACKING

public static final TargetStatus TRACKING
Method Detail

values

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

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

valueOf

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

toChar

public char toChar()
Returns the corresponding char constant.

Returns:
Char indicator for Status

valueOf

public static TargetStatus valueOf(char c)
Get the enum corresponding to specified char.

Parameters:
c - Char indicator for Status
Returns:
Status


Copyright (C) 2010-2014 Java Marine API authors. All Rights Reserved.