com.tibco.rta.model
Enum RetentionPolicy.Qualifier

java.lang.Object
  extended by java.lang.Enum<RetentionPolicy.Qualifier>
      extended by com.tibco.rta.model.RetentionPolicy.Qualifier
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RetentionPolicy.Qualifier>
Enclosing interface:
RetentionPolicy

public static enum RetentionPolicy.Qualifier
extends java.lang.Enum<RetentionPolicy.Qualifier>

Qualifier to tell if the retention policy applies to a fact or to a hierarchy.


Enum Constant Summary
FACT
           
HIERARCHY
           
 
Method Summary
static RetentionPolicy.Qualifier valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RetentionPolicy.Qualifier[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FACT

public static final RetentionPolicy.Qualifier FACT

HIERARCHY

public static final RetentionPolicy.Qualifier HIERARCHY
Method Detail

values

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

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

valueOf

public static RetentionPolicy.Qualifier 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


Copyright © 2000-2014 TIBCO Inc. All Rights Reserved.