Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.7.0)

E13403-08

oracle.javatools.db.plsql
Enum PlSqlToken.Type

java.lang.Object
  extended by java.lang.Enum<PlSqlToken.Type>
      extended by oracle.javatools.db.plsql.PlSqlToken.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PlSqlToken.Type>
Enclosing class:
PlSqlToken

public static enum PlSqlToken.Type
extends java.lang.Enum<PlSqlToken.Type>


Enum Constant Summary
ALPHANUMERIC
           
DOUBLE_QUOTED_STRING
           
END_MARKER
           
MULTI_LINE_COMMENT
           
PUNCTUATION
           
SINGLE_LINE_COMMENT
           
SINGLE_QUOTED_STRING
           
UNKNOWN
           
USER_TOKEN
           
WHITESPACE
           
 
Method Summary
static PlSqlToken.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PlSqlToken.Type[] 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

UNKNOWN

public static final PlSqlToken.Type UNKNOWN

WHITESPACE

public static final PlSqlToken.Type WHITESPACE

SINGLE_LINE_COMMENT

public static final PlSqlToken.Type SINGLE_LINE_COMMENT

MULTI_LINE_COMMENT

public static final PlSqlToken.Type MULTI_LINE_COMMENT

SINGLE_QUOTED_STRING

public static final PlSqlToken.Type SINGLE_QUOTED_STRING

DOUBLE_QUOTED_STRING

public static final PlSqlToken.Type DOUBLE_QUOTED_STRING

ALPHANUMERIC

public static final PlSqlToken.Type ALPHANUMERIC

PUNCTUATION

public static final PlSqlToken.Type PUNCTUATION

USER_TOKEN

public static final PlSqlToken.Type USER_TOKEN

END_MARKER

public static final PlSqlToken.Type END_MARKER
Method Detail

values

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

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

valueOf

public static PlSqlToken.Type valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.7.0)

E13403-08

Copyright © 1997, 2013, Oracle. All rights reserved.