Package com.perforce.p4java.diff
Enum DiffFlags.Grid
- java.lang.Object
-
- java.lang.Enum<DiffFlags.Grid>
-
- com.perforce.p4java.diff.DiffFlags.Grid
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DiffFlags.Grid>
- Enclosing class:
- DiffFlags
public static enum DiffFlags.Grid extends java.lang.Enum<DiffFlags.Grid>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Diff3GuardedGuardedDiff3OptimalTwoWay
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DiffFlags.GridvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DiffFlags.Grid[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Optimal
public static final DiffFlags.Grid Optimal
-
Guarded
public static final DiffFlags.Grid Guarded
-
TwoWay
public static final DiffFlags.Grid TwoWay
-
Diff3
public static final DiffFlags.Grid Diff3
-
GuardedDiff3
public static final DiffFlags.Grid GuardedDiff3
-
-
Method Detail
-
values
public static DiffFlags.Grid[] 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.Grid c : DiffFlags.Grid.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.Grid 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
-
-