Enum SearchRequest.DerefAliasesType
- java.lang.Object
-
- java.lang.Enum<SearchRequest.DerefAliasesType>
-
- org.openehealth.ipf.commons.ihe.hpd.stub.dsmlv2.SearchRequest.DerefAliasesType
-
- All Implemented Interfaces:
Serializable,Comparable<SearchRequest.DerefAliasesType>
- Enclosing class:
- SearchRequest
public static enum SearchRequest.DerefAliasesType extends Enum<SearchRequest.DerefAliasesType>
Java class for null.
The following schema fragment specifies the expected content contained within this class.
<simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="neverDerefAliases"/> <enumeration value="derefInSearching"/> <enumeration value="derefFindingBaseObj"/> <enumeration value="derefAlways"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEREF_ALWAYSDEREF_FINDING_BASE_OBJDEREF_IN_SEARCHINGNEVER_DEREF_ALIASES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SearchRequest.DerefAliasesTypefromValue(String v)Stringvalue()static SearchRequest.DerefAliasesTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SearchRequest.DerefAliasesType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEVER_DEREF_ALIASES
public static final SearchRequest.DerefAliasesType NEVER_DEREF_ALIASES
-
DEREF_IN_SEARCHING
public static final SearchRequest.DerefAliasesType DEREF_IN_SEARCHING
-
DEREF_FINDING_BASE_OBJ
public static final SearchRequest.DerefAliasesType DEREF_FINDING_BASE_OBJ
-
DEREF_ALWAYS
public static final SearchRequest.DerefAliasesType DEREF_ALWAYS
-
-
Method Detail
-
values
public static SearchRequest.DerefAliasesType[] 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 (SearchRequest.DerefAliasesType c : SearchRequest.DerefAliasesType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchRequest.DerefAliasesType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static SearchRequest.DerefAliasesType fromValue(String v)
-
-