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

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

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

List of nature of fields in the layout of Screens.


Enum Constant Summary
_F
           
_P
           
_V
           
 
Method Summary
static ScreenFieldNatureValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ScreenFieldNatureValues[] 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

_F

public static final ScreenFieldNatureValues _F

Protected and received field.


_P

public static final ScreenFieldNatureValues _P

Protected field.


_V

public static final ScreenFieldNatureValues _V

Variable field.

Method Detail

valueOf

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

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