|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SpecialStatus>
be.ehealth.technicalconnector.beid.domain.SpecialStatus
public enum SpecialStatus
Special status Enumeration to specify additional information
Enum Constant Summary | |
---|---|
EXTENDED_MINORITY
Extended minority |
|
NO_STATUS
No Status |
|
WHITE_CANE
White cane |
|
WHITE_CANE_EXTENDED_MINORITY
White can extended minority |
|
YELLOW_CANE
Yellow cane |
|
YELLOW_CANE_EXTENDED_MINORITY
Yellow cane extended minority |
Method Summary | |
---|---|
boolean |
hasBadSight()
|
boolean |
hasExtendedMinority()
|
boolean |
hasWhiteCane()
|
boolean |
hasYellowCane()
|
static SpecialStatus |
toSpecialStatus(String value)
Transforms a string value into a SpecialStatus |
static SpecialStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SpecialStatus[] |
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 |
---|
public static final SpecialStatus NO_STATUS
public static final SpecialStatus WHITE_CANE
public static final SpecialStatus EXTENDED_MINORITY
public static final SpecialStatus WHITE_CANE_EXTENDED_MINORITY
public static final SpecialStatus YELLOW_CANE
public static final SpecialStatus YELLOW_CANE_EXTENDED_MINORITY
Method Detail |
---|
public static SpecialStatus[] values()
for (SpecialStatus c : SpecialStatus.values()) System.out.println(c);
public static SpecialStatus valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic boolean hasWhiteCane()
public boolean hasExtendedMinority()
public boolean hasYellowCane()
public boolean hasBadSight()
public static SpecialStatus toSpecialStatus(String value)
value
- the string value
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |