com.ibm.pdp.maf.rpp.pac.common.dialog
Enum ScreenSubSchemaValues

java.lang.Object
  extended by java.lang.Enum<ScreenSubSchemaValues>
      extended by com.ibm.pdp.maf.rpp.pac.common.dialog.ScreenSubSchemaValues
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ScreenSubSchemaValues>

public enum ScreenSubSchemaValues
extends java.lang.Enum<ScreenSubSchemaValues>

List of subschemas. Logical Characteristics.


Enum Constant Summary
_0
           
_1
           
_2
           
_3
           
_4
           
_5
           
_6
           
_7
           
_8
           
_9
           
NONE
           
 
Method Summary
static ScreenSubSchemaValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ScreenSubSchemaValues[] 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

_0

public static final ScreenSubSchemaValues _0

Subschema 10.


_1

public static final ScreenSubSchemaValues _1

Subschema 1.


_2

public static final ScreenSubSchemaValues _2

Subschema 2.

For organization V, secondary access keys to indexed files.


_3

public static final ScreenSubSchemaValues _3

Subschema 3.

For organization V, it indicates that secondary access key to indexed files is DUPLICATED.


_4

public static final ScreenSubSchemaValues _4

Subschema 4.


_5

public static final ScreenSubSchemaValues _5

Subschema 5.


_6

public static final ScreenSubSchemaValues _6

Subschema 6.


_7

public static final ScreenSubSchemaValues _7

Subschema 7.


_8

public static final ScreenSubSchemaValues _8

Subschema 8.


_9

public static final ScreenSubSchemaValues _9

Subschema 9.


NONE

public static final ScreenSubSchemaValues NONE

No subschema selected. All the data elements are selected.

Method Detail

valueOf

public static ScreenSubSchemaValues 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

values

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

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