org.irig106.chapter10.packets
Enum PCMPacket_Format1.MinorFrameStatus

java.lang.Object
  extended by java.lang.Enum<PCMPacket_Format1.MinorFrameStatus>
      extended by org.irig106.chapter10.packets.PCMPacket_Format1.MinorFrameStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PCMPacket_Format1.MinorFrameStatus>
Enclosing class:
PCMPacket_Format1

public static enum PCMPacket_Format1.MinorFrameStatus
extends java.lang.Enum<PCMPacket_Format1.MinorFrameStatus>

Minor Frame Status Definitions (PCM Data Packet, Format 1)

All IRIG-106 Chapter 10 Minor Frame Status Definitions for PCM Data Packets (Format1). Contains the ID and Description for each definiton.


Enum Constant Summary
MinorFrameCheck
           
MinorFrameLock
           
 
Method Summary
 java.lang.String getDescription()
           
 int getID()
           
static PCMPacket_Format1.MinorFrameStatus valueOf(int id)
           
static PCMPacket_Format1.MinorFrameStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PCMPacket_Format1.MinorFrameStatus[] 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

MinorFrameCheck

public static final PCMPacket_Format1.MinorFrameStatus MinorFrameCheck

MinorFrameLock

public static final PCMPacket_Format1.MinorFrameStatus MinorFrameLock
Method Detail

values

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

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

valueOf

public static PCMPacket_Format1.MinorFrameStatus valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

valueOf

public static PCMPacket_Format1.MinorFrameStatus valueOf(int id)

getID

public int getID()

getDescription

public java.lang.String getDescription()