com.spoledge.audao.parser.gql
Enum PreparedGql.QueryType

java.lang.Object
  extended by java.lang.Enum<PreparedGql.QueryType>
      extended by com.spoledge.audao.parser.gql.PreparedGql.QueryType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PreparedGql.QueryType>
Enclosing class:
PreparedGql

public static enum PreparedGql.QueryType
extends java.lang.Enum<PreparedGql.QueryType>

The query type enumeration.


Enum Constant Summary
DELETE
           
INSERT
           
SELECT
           
UPDATE
           
 
Method Summary
 boolean isUpdate()
           
static PreparedGql.QueryType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PreparedGql.QueryType[] 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

SELECT

public static final PreparedGql.QueryType SELECT

INSERT

public static final PreparedGql.QueryType INSERT

UPDATE

public static final PreparedGql.QueryType UPDATE

DELETE

public static final PreparedGql.QueryType DELETE
Method Detail

values

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

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

valueOf

public static PreparedGql.QueryType 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

isUpdate

public boolean isUpdate()


Copyright © 2010 Spolecne s.r.o. All Rights Reserved.