org.openliberty.xmltooling.subs
Enum Subscription.IncludeDataEnum

java.lang.Object
  extended by java.lang.Enum<Subscription.IncludeDataEnum>
      extended by org.openliberty.xmltooling.subs.Subscription.IncludeDataEnum
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Subscription.IncludeDataEnum>
Enclosing class:
Subscription

public static enum Subscription.IncludeDataEnum
extends java.lang.Enum<Subscription.IncludeDataEnum>


Enum Constant Summary
NO
           
YES
           
YES_WITH_COMMON_ATTRIBUTES
           
 
Field Summary
private  java.lang.String value
           
 
Method Summary
static Subscription.IncludeDataEnum getIncludeDataEnumForValue(java.lang.String value)
           
 java.lang.String getValue()
           
static Subscription.IncludeDataEnum valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Subscription.IncludeDataEnum[] 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

YES

public static final Subscription.IncludeDataEnum YES

NO

public static final Subscription.IncludeDataEnum NO

YES_WITH_COMMON_ATTRIBUTES

public static final Subscription.IncludeDataEnum YES_WITH_COMMON_ATTRIBUTES
Field Detail

value

private java.lang.String value
Method Detail

values

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

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

valueOf

public static Subscription.IncludeDataEnum 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

getValue

public java.lang.String getValue()

getIncludeDataEnumForValue

public static Subscription.IncludeDataEnum getIncludeDataEnumForValue(java.lang.String value)