|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PrimitiveType>
org.basex.query.up.primitives.PrimitiveType
public enum PrimitiveType
UpdatePrimitive
types. Do not change the order as this affects
UpdatePrimitiveComparator
and will most likely lead to weird results.
Enum Constant Summary | |
---|---|
DELETENODE
Delete. |
|
INSERTAFTER
Insert after. |
|
INSERTATTR
Insert attribute. |
|
INSERTBEFORE
Insert before. |
|
INSERTINTO
Insert into. |
|
INSERTINTOFIRST
Insert into as first. |
|
INSERTINTOLAST
Insert into as last. |
|
RENAMENODE
Rename. |
|
REPLACENODE
Replace node. |
|
REPLACEVALUE
Replace value. |
Method Summary | |
---|---|
static PrimitiveType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static PrimitiveType[] |
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 PrimitiveType INSERTBEFORE
public static final PrimitiveType DELETENODE
public static final PrimitiveType REPLACENODE
public static final PrimitiveType RENAMENODE
public static final PrimitiveType REPLACEVALUE
public static final PrimitiveType INSERTATTR
public static final PrimitiveType INSERTINTOFIRST
public static final PrimitiveType INSERTINTO
public static final PrimitiveType INSERTINTOLAST
public static final PrimitiveType INSERTAFTER
Method Detail |
---|
public static PrimitiveType[] values()
for (PrimitiveType c : PrimitiveType.values()) System.out.println(c);
public static PrimitiveType 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 null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |