|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<TQL.StatementType>
com.apelon.modules.dts.editor.tql.TQL.StatementType
public static enum TQL.StatementType
Enum for TQL statement types.
Method Summary | |
---|---|
boolean |
isDelete()
Return whether this statement type is a DELETE statement. |
boolean |
isExport()
Return whether this statement type is an EXPORT statement. |
boolean |
isObjectEdit()
Return whether this statement type creates or deletes DTSConcept or Term objects. |
boolean |
isReadonly()
Return whether this statement type does not modify the DTS Knowledgebase. |
static TQL.StatementType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TQL.StatementType[] |
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 TQL.StatementType EXPORT
public static final TQL.StatementType EXPORT_NAMESPACE
public static final TQL.StatementType EXPORT_CONCEPTS
public static final TQL.StatementType EXPORT_SUBSET
public static final TQL.StatementType DELETE_CONCEPTS
public static final TQL.StatementType DELETE_TREES
public static final TQL.StatementType DELETE_TERMS
public static final TQL.StatementType CREATE
public static final TQL.StatementType DELETE
public static final TQL.StatementType CREATE_CONCEPTS
public static final TQL.StatementType CREATE_TERMS
public static final TQL.StatementType DELETE_ATTRS
public static final TQL.StatementType SET
public static final TQL.StatementType UPDATE_ATTRS
public static final TQL.StatementType COLLECTION
public static final TQL.StatementType PRINT
public static final TQL.StatementType LOG
public static final TQL.StatementType PARAMETER
public static final TQL.StatementType CONSTRAIN
public static final TQL.StatementType FOR
public static final TQL.StatementType IF
public static final TQL.StatementType ELSE
public static final TQL.StatementType ELSEIF
public static final TQL.StatementType WHO
Method Detail |
---|
public static TQL.StatementType[] values()
for (TQL.StatementType c : TQL.StatementType.values()) System.out.println(c);
public static TQL.StatementType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic boolean isExport()
EXPORT
statement.
public boolean isDelete()
DELETE
statement.
public boolean isObjectEdit()
DTSConcept
or Term
objects.
public boolean isReadonly()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |