public enum WESelector extends Enum<WESelector>
Enum Constant and Description |
---|
Cuboid |
Cylinder |
Default |
Ellipsoid |
Extending |
Polygonal |
Sphere |
Modifier and Type | Method and Description |
---|---|
abstract com.sk89q.worldedit.regions.RegionSelector |
create(DAC dac,
com.sk89q.worldedit.LocalWorld world,
Shape shape) |
static WESelector |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WESelector[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WESelector Default
public static final WESelector Cuboid
public static final WESelector Extending
public static final WESelector Polygonal
public static final WESelector Cylinder
public static final WESelector Sphere
public static final WESelector Ellipsoid
public static WESelector[] values()
for (WESelector c : WESelector.values()) System.out.println(c);
public static WESelector 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 © 2012. All Rights Reserved.