public enum COMPLEX_STRUCTURE_QUERY_DETAIL extends java.lang.Enum<COMPLEX_STRUCTURE_QUERY_DETAIL>
Enum Constant and Description |
---|
CASCADED_MATCHED_ITEMS |
COMPLETE_STUB |
FULL |
MATCHED_ITEMS |
STUB |
Modifier and Type | Method and Description |
---|---|
static COMPLEX_STRUCTURE_QUERY_DETAIL |
parseString(java.lang.String str)
Returns the COMPLEX_STRUCTURE_QUERY_DETAIL equivalent of the input string (ignores case):
Full - COMPLEX_STRUCTURE_QUERY_DETAIL.FULL
Stub - COMPLEX_STRUCTURE_QUERY_DETAIL.STUB
CompleteStub - COMPLEX_STRUCTURE_QUERY_DETAIL.COMPLETE_STUB
MatchedItems - COMPLEX_STRUCTURE_QUERY_DETAIL.MATCHED_ITEMS
CascadedMatchedItems - COMPLEX_STRUCTURE_QUERY_DETAIL.CASCADED_MATCHED_ITEMS
|
static COMPLEX_STRUCTURE_QUERY_DETAIL |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static COMPLEX_STRUCTURE_QUERY_DETAIL[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final COMPLEX_STRUCTURE_QUERY_DETAIL FULL
public static final COMPLEX_STRUCTURE_QUERY_DETAIL STUB
public static final COMPLEX_STRUCTURE_QUERY_DETAIL COMPLETE_STUB
public static final COMPLEX_STRUCTURE_QUERY_DETAIL MATCHED_ITEMS
public static final COMPLEX_STRUCTURE_QUERY_DETAIL CASCADED_MATCHED_ITEMS
public static COMPLEX_STRUCTURE_QUERY_DETAIL[] values()
for (COMPLEX_STRUCTURE_QUERY_DETAIL c : COMPLEX_STRUCTURE_QUERY_DETAIL.values()) System.out.println(c);
public static COMPLEX_STRUCTURE_QUERY_DETAIL valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static COMPLEX_STRUCTURE_QUERY_DETAIL parseString(java.lang.String str)
str
- SdmxSemmanticException
- if the input string is not one of the strings as mentions above