public static enum Types.Direction extends Enum<Types.Direction>
| Modifier and Type | Method and Description | 
|---|---|
| String | toString() | 
| static Types.Direction | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Types.Direction[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Types.Direction RowCol
public static final Types.Direction Row
public static final Types.Direction Col
public static Types.Direction[] values()
for (Types.Direction c : Types.Direction.values()) System.out.println(c);
public static Types.Direction valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<Types.Direction>Copyright © 2020 The Apache Software Foundation. All rights reserved.