Package com.perforce.p4java.diff
Enum DiffFlags.Sequence
- java.lang.Object
-
- java.lang.Enum<DiffFlags.Sequence>
-
- com.perforce.p4java.diff.DiffFlags.Sequence
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DiffFlags.Sequence>
- Enclosing class:
- DiffFlags
public static enum DiffFlags.Sequence extends java.lang.Enum<DiffFlags.Sequence>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DiffFlags.SequencevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DiffFlags.Sequence[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Line
public static final DiffFlags.Sequence Line
-
Word
public static final DiffFlags.Sequence Word
-
DashL
public static final DiffFlags.Sequence DashL
-
DashB
public static final DiffFlags.Sequence DashB
-
DashW
public static final DiffFlags.Sequence DashW
-
WClass
public static final DiffFlags.Sequence WClass
-
-
Method Detail
-
values
public static DiffFlags.Sequence[] 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 (DiffFlags.Sequence c : DiffFlags.Sequence.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DiffFlags.Sequence 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
-
-