public static enum Id.Quoting extends Enum<Id.Quoting>
Enum Constant and Description |
---|
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".
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final Id.Quoting UNQUOTED
public static final Id.Quoting QUOTED
public static final Id.Quoting KEY
public static Id.Quoting[] values()
for (Id.Quoting c : Id.Quoting.values()) System.out.println(c);
public static Id.Quoting valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019 Hitachi Vantara. All rights reserved.