Package oracle.pg.rdbms.pgql
Enum PgqlSqlModifyTrans.ModificationType
- java.lang.Object
-
- java.lang.Enum<PgqlSqlModifyTrans.ModificationType>
-
- oracle.pg.rdbms.pgql.PgqlSqlModifyTrans.ModificationType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PgqlSqlModifyTrans.ModificationType>
- Enclosing interface:
- PgqlSqlModifyTrans
public static enum PgqlSqlModifyTrans.ModificationType extends java.lang.Enum<PgqlSqlModifyTrans.ModificationType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELETEINSERT_EDGEINSERT_VERTEXUPDATE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PgqlSqlModifyTrans.ModificationTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PgqlSqlModifyTrans.ModificationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UPDATE
public static final PgqlSqlModifyTrans.ModificationType UPDATE
-
INSERT_VERTEX
public static final PgqlSqlModifyTrans.ModificationType INSERT_VERTEX
-
INSERT_EDGE
public static final PgqlSqlModifyTrans.ModificationType INSERT_EDGE
-
DELETE
public static final PgqlSqlModifyTrans.ModificationType DELETE
-
-
Method Detail
-
values
public static PgqlSqlModifyTrans.ModificationType[] 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 (PgqlSqlModifyTrans.ModificationType c : PgqlSqlModifyTrans.ModificationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PgqlSqlModifyTrans.ModificationType 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 namejava.lang.NullPointerException- if the argument is null
-
-