com.objex.progeny.anywhere.enums
Enum INDIVIDUAL_PROPERTY

java.lang.Object
  extended by java.lang.Enum<INDIVIDUAL_PROPERTY>
      extended by com.objex.progeny.anywhere.enums.INDIVIDUAL_PROPERTY
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<INDIVIDUAL_PROPERTY>

public enum INDIVIDUAL_PROPERTY
extends java.lang.Enum<INDIVIDUAL_PROPERTY>
implements java.io.Serializable

Defines constant values for select properties of an Individual object that are of interest


Enum Constant Summary
ADOPTEDIN_PROPERTY
          Adopted in property
ADOPTEDOUT_PROPERTY
          Adopted out property
DECEASED_PROPERTY
          Deceased property
ICONTEXT_PROPERTY
          Icontext property
INFERTILE_PROPERTY
          Infertile property
MARKEDBY_PROPERTY
          Marked by property
NOISSUE_PROPERTY
          No issue property
PROBAND_PROPERTY
          Proband property
SAB_PROPERTY
          SAB property
 
Method Summary
static INDIVIDUAL_PROPERTY valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static INDIVIDUAL_PROPERTY[] 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

DECEASED_PROPERTY

public static final INDIVIDUAL_PROPERTY DECEASED_PROPERTY
Deceased property


PROBAND_PROPERTY

public static final INDIVIDUAL_PROPERTY PROBAND_PROPERTY
Proband property


NOISSUE_PROPERTY

public static final INDIVIDUAL_PROPERTY NOISSUE_PROPERTY
No issue property


INFERTILE_PROPERTY

public static final INDIVIDUAL_PROPERTY INFERTILE_PROPERTY
Infertile property


SAB_PROPERTY

public static final INDIVIDUAL_PROPERTY SAB_PROPERTY
SAB property


ADOPTEDIN_PROPERTY

public static final INDIVIDUAL_PROPERTY ADOPTEDIN_PROPERTY
Adopted in property


ADOPTEDOUT_PROPERTY

public static final INDIVIDUAL_PROPERTY ADOPTEDOUT_PROPERTY
Adopted out property


MARKEDBY_PROPERTY

public static final INDIVIDUAL_PROPERTY MARKEDBY_PROPERTY
Marked by property


ICONTEXT_PROPERTY

public static final INDIVIDUAL_PROPERTY ICONTEXT_PROPERTY
Icontext property

Method Detail

values

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

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

valueOf

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