|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Id.Quoting> mondrian.olap.Id.Quoting
public static enum Id.Quoting
Enum Constant Summary | |
---|---|
KEY
Identifier quoted with an ampersand to indicate a key value, for example the second segment in "[Employees].&[89]". |
|
QUOTED
Quoted identifier, for example "[Measures]". |
|
UNQUOTED
Unquoted identifier, for example "Measures". |
Method Summary | |
---|---|
static Id.Quoting |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Id.Quoting[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, 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 Id.Quoting UNQUOTED
public static final Id.Quoting QUOTED
public static final Id.Quoting KEY
Method Detail |
---|
public static Id.Quoting[] values()
for (Id.Quoting c : Id.Quoting.values()) System.out.println(c);
public static Id.Quoting valueOf(String name)
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullname
- the name of the enum constant to be returned.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |