com.mmm.cms.homehealth.proto.logic
Enum DiagnosticCategoryLogicTypeID

java.lang.Object
  extended by java.lang.Enum<DiagnosticCategoryLogicTypeID>
      extended by com.mmm.cms.homehealth.proto.logic.DiagnosticCategoryLogicTypeID
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DiagnosticCategoryLogicTypeID>

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

Defines the type of categories possible within the Home Health System


Enum Constant Summary
NONE
           
OTHER_ONLY
           
PRIMARY_CODE_ONLY
           
PRIMARY_CODE_ONLY_AFTER_ETIOLOGY_SCORING
           
PRIMARY_OR_OTHER
           
 
Method Summary
static DiagnosticCategoryLogicTypeID valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DiagnosticCategoryLogicTypeID[] 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

NONE

public static final DiagnosticCategoryLogicTypeID NONE

PRIMARY_CODE_ONLY

public static final DiagnosticCategoryLogicTypeID PRIMARY_CODE_ONLY

PRIMARY_CODE_ONLY_AFTER_ETIOLOGY_SCORING

public static final DiagnosticCategoryLogicTypeID PRIMARY_CODE_ONLY_AFTER_ETIOLOGY_SCORING

OTHER_ONLY

public static final DiagnosticCategoryLogicTypeID OTHER_ONLY

PRIMARY_OR_OTHER

public static final DiagnosticCategoryLogicTypeID PRIMARY_OR_OTHER
Method Detail

values

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

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

valueOf

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