public static enum Region.Location extends Enum<Region.Location>
| Enum Constant and Description | 
|---|
BOUNDARY
Code for points on the partition boundary. 
 | 
INSIDE
Code for points inside the partition. 
 | 
OUTSIDE
Code 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 © 2016-2021 CS GROUP. All rights reserved.