public enum Overlap extends Enum<Overlap>
| Enum Constant and Description |
|---|
compress |
False |
prism |
scale |
scalexy |
True |
voronoi |
vpsc |
| Modifier and Type | Method and Description |
|---|---|
static Overlap |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Overlap[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Overlap scale
public static final Overlap prism
public static final Overlap voronoi
public static final Overlap scalexy
public static final Overlap compress
public static final Overlap vpsc
public static final Overlap True
public static final Overlap False
public static Overlap[] values()
for (Overlap c : Overlap.values()) System.out.println(c);
public static Overlap 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 © 2013. All Rights Reserved.