OCSEPICS
Enum OCSEPICSConsts.PVTypes

java.lang.Object
  extended by java.lang.Enum<OCSEPICSConsts.PVTypes>
      extended by OCSEPICS.OCSEPICSConsts.PVTypes
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OCSEPICSConsts.PVTypes>
Enclosing class:
OCSEPICSConsts

public static enum OCSEPICSConsts.PVTypes
extends java.lang.Enum<OCSEPICSConsts.PVTypes>

This is an enumeration of the types of PV which are associated with an EPICS control action


Enum Constant Summary
CLSTATPV
           
COMMPV
           
COMMSTATPV
           
COMMSTRPV
           
CURRENTPOSITIONPV
           
DEMANDPV
           
ERRSTRPV
           
MECHSTATPV
           
TIMEOUTPV
           
 
Method Summary
static OCSEPICSConsts.PVTypes valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OCSEPICSConsts.PVTypes[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CLSTATPV

public static final OCSEPICSConsts.PVTypes CLSTATPV

COMMPV

public static final OCSEPICSConsts.PVTypes COMMPV

DEMANDPV

public static final OCSEPICSConsts.PVTypes DEMANDPV

COMMSTATPV

public static final OCSEPICSConsts.PVTypes COMMSTATPV

COMMSTRPV

public static final OCSEPICSConsts.PVTypes COMMSTRPV

CURRENTPOSITIONPV

public static final OCSEPICSConsts.PVTypes CURRENTPOSITIONPV

MECHSTATPV

public static final OCSEPICSConsts.PVTypes MECHSTATPV

ERRSTRPV

public static final OCSEPICSConsts.PVTypes ERRSTRPV

TIMEOUTPV

public static final OCSEPICSConsts.PVTypes TIMEOUTPV
Method Detail

values

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

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

valueOf

public static OCSEPICSConsts.PVTypes 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