org.apache.qpid.qmf
Enum QMFProperty.AccessCode

java.lang.Object
  extended by java.lang.Enum<QMFProperty.AccessCode>
      extended by org.apache.qpid.qmf.QMFProperty.AccessCode
All Implemented Interfaces:
Serializable, Comparable<QMFProperty.AccessCode>
Enclosing class:
QMFProperty

public static enum QMFProperty.AccessCode
extends Enum<QMFProperty.AccessCode>


Enum Constant Summary
RC
           
RO
           
RW
           
 
Method Summary
 int codeValue()
           
static QMFProperty.AccessCode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static QMFProperty.AccessCode[] 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

RC

public static final QMFProperty.AccessCode RC

RW

public static final QMFProperty.AccessCode RW

RO

public static final QMFProperty.AccessCode RO
Method Detail

values

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

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

valueOf

public static QMFProperty.AccessCode 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

codeValue

public int codeValue()


Licensed to the Apache Software Foundation