org.apache.qpid.management.domain.model
Enum QpidFeatureBuilder.Attribute

java.lang.Object
  extended by java.lang.Enum<QpidFeatureBuilder.Attribute>
      extended by org.apache.qpid.management.domain.model.QpidFeatureBuilder.Attribute
All Implemented Interfaces:
Serializable, Comparable<QpidFeatureBuilder.Attribute>
Enclosing class:
QpidFeatureBuilder

static enum QpidFeatureBuilder.Attribute
extends Enum<QpidFeatureBuilder.Attribute>


Enum Constant Summary
access
           
argCount
           
desc
           
dir
           
index
           
max
           
maxlen
           
min
           
name
           
optional
           
type
           
unit
           
 
Method Summary
static QpidFeatureBuilder.Attribute valueOf(String name)
          Returns the enum constant of this type with the specified name.
static QpidFeatureBuilder.Attribute[] 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

name

public static final QpidFeatureBuilder.Attribute name

type

public static final QpidFeatureBuilder.Attribute type

access

public static final QpidFeatureBuilder.Attribute access

index

public static final QpidFeatureBuilder.Attribute index

optional

public static final QpidFeatureBuilder.Attribute optional

unit

public static final QpidFeatureBuilder.Attribute unit

min

public static final QpidFeatureBuilder.Attribute min

max

public static final QpidFeatureBuilder.Attribute max

maxlen

public static final QpidFeatureBuilder.Attribute maxlen

desc

public static final QpidFeatureBuilder.Attribute desc

dir

public static final QpidFeatureBuilder.Attribute dir

argCount

public static final QpidFeatureBuilder.Attribute argCount
Method Detail

values

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

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

valueOf

public static QpidFeatureBuilder.Attribute 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


Licensed to the Apache Software Foundation