public static enum Region.Location extends Enum<Region.Location>
| Enum Constant and Description | 
|---|
| BOUNDARYCode for points on the partition boundary. | 
| INSIDECode for points inside the partition. | 
| OUTSIDECode for points outside of the partition. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Region.Location | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Region.Location[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Region.Location INSIDE
public static final Region.Location OUTSIDE
public static final Region.Location BOUNDARY
public static Region.Location[] values()
for (Region.Location c : Region.Location.values()) System.out.println(c);
public static Region.Location 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 nullCopyright © 2003–2016 The Apache Software Foundation. All rights reserved.