Skip navigation links
oracle.xml.diff
Enum DiffOp.Name
java.lang.Object
java.lang.Enum<DiffOp.Name>
oracle.xml.diff.DiffOp.Name
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<DiffOp.Name>
- Enclosing class:
- DiffOp
-
public static enum DiffOp.Name
- extends java.lang.Enum<DiffOp.Name>
Method Summary |
static DiffOp.Name |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DiffOp.Name[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
DELETE
public static final DiffOp.Name DELETE
INSERT_BY_APPENDING
public static final DiffOp.Name INSERT_BY_APPENDING
INSERT_BEFORE_NODE
public static final DiffOp.Name INSERT_BEFORE_NODE
values
public static DiffOp.Name[] 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 (DiffOp.Name c : DiffOp.Name.values())
System.out.println(c);
-
- Returns:
- an array containing the constants of this enum type, in the order they are declared
valueOf
public static DiffOp.Name 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
Skip navigation links
Copyright © 2003, 2014, Oracle and/or its affiliates. All rights reserved.