mondrian.xmla
Enum Enumeration.Literal

java.lang.Object
  extended by java.lang.Enum<Enumeration.Literal>
      extended by mondrian.xmla.Enumeration.Literal
All Implemented Interfaces:
Serializable, Comparable<Enumeration.Literal>, Enumeration.EnumWithDesc
Enclosing class:
Enumeration

static enum Enumeration.Literal
extends Enum<Enumeration.Literal>
implements Enumeration.EnumWithDesc

 

Enum Constant Summary
DBLITERAL_CATALOG_NAME
           
DBLITERAL_CATALOG_SEPARATOR
           
DBLITERAL_COLUMN_ALIAS
           
DBLITERAL_COLUMN_NAME
           
DBLITERAL_CORRELATION_NAME
           
DBLITERAL_CUBE_NAME
           
DBLITERAL_DIMENSION_NAME
           
DBLITERAL_HIERARCHY_NAME
           
DBLITERAL_LEVEL_NAME
           
DBLITERAL_MEMBER_NAME
           
DBLITERAL_PROCEDURE_NAME
           
DBLITERAL_PROPERTY_NAME
           
DBLITERAL_QUOTE
           
DBLITERAL_QUOTE_SUFFIX
           
DBLITERAL_TABLE_NAME
           
DBLITERAL_TEXT_COMMAND
           
DBLITERAL_USER_NAME
           
 
Method Summary
 String getDescription()
           
 String getLiteralInvalidChars()
           
 String getLiteralInvalidStartingChars()
           
 int getLiteralMaxLength()
           
 String getLiteralName()
           
 String getLiteralValue()
           
static Enumeration.Literal valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Enumeration.Literal[] 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

DBLITERAL_CATALOG_NAME

public static final Enumeration.Literal DBLITERAL_CATALOG_NAME

DBLITERAL_CATALOG_SEPARATOR

public static final Enumeration.Literal DBLITERAL_CATALOG_SEPARATOR

DBLITERAL_COLUMN_ALIAS

public static final Enumeration.Literal DBLITERAL_COLUMN_ALIAS

DBLITERAL_COLUMN_NAME

public static final Enumeration.Literal DBLITERAL_COLUMN_NAME

DBLITERAL_CORRELATION_NAME

public static final Enumeration.Literal DBLITERAL_CORRELATION_NAME

DBLITERAL_CUBE_NAME

public static final Enumeration.Literal DBLITERAL_CUBE_NAME

DBLITERAL_DIMENSION_NAME

public static final Enumeration.Literal DBLITERAL_DIMENSION_NAME

DBLITERAL_HIERARCHY_NAME

public static final Enumeration.Literal DBLITERAL_HIERARCHY_NAME

DBLITERAL_LEVEL_NAME

public static final Enumeration.Literal DBLITERAL_LEVEL_NAME

DBLITERAL_MEMBER_NAME

public static final Enumeration.Literal DBLITERAL_MEMBER_NAME

DBLITERAL_PROCEDURE_NAME

public static final Enumeration.Literal DBLITERAL_PROCEDURE_NAME

DBLITERAL_PROPERTY_NAME

public static final Enumeration.Literal DBLITERAL_PROPERTY_NAME

DBLITERAL_QUOTE

public static final Enumeration.Literal DBLITERAL_QUOTE

DBLITERAL_QUOTE_SUFFIX

public static final Enumeration.Literal DBLITERAL_QUOTE_SUFFIX

DBLITERAL_TABLE_NAME

public static final Enumeration.Literal DBLITERAL_TABLE_NAME

DBLITERAL_TEXT_COMMAND

public static final Enumeration.Literal DBLITERAL_TEXT_COMMAND

DBLITERAL_USER_NAME

public static final Enumeration.Literal DBLITERAL_USER_NAME
Method Detail

values

public static Enumeration.Literal[] 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 (Enumeration.Literal c : Enumeration.Literal.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Enumeration.Literal 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.)

Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null
Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name

getLiteralName

public String getLiteralName()

getLiteralValue

public String getLiteralValue()

getLiteralInvalidChars

public String getLiteralInvalidChars()

getLiteralInvalidStartingChars

public String getLiteralInvalidStartingChars()

getLiteralMaxLength

public int getLiteralMaxLength()

getDescription

public String getDescription()
Specified by:
getDescription in interface Enumeration.EnumWithDesc

SourceForge.net_Logo