public static enum Geometry.GeometryAccelerationDegree extends Enum<Geometry.GeometryAccelerationDegree>
Enum Constant and Description |
---|
enumHot
high acceleration, takes even more memory and may take
longest time to accelerate, but may work faster than the
other two.
|
enumMedium
medium acceleration, takes more memory and takes more time to accelerate, but may work faster.
|
enumMild
mild acceleration, takes least amount of memory.
|
Modifier and Type | Method and Description |
---|---|
static Geometry.GeometryAccelerationDegree |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Geometry.GeometryAccelerationDegree[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Geometry.GeometryAccelerationDegree enumMild
public static final Geometry.GeometryAccelerationDegree enumMedium
public static final Geometry.GeometryAccelerationDegree enumHot
public static Geometry.GeometryAccelerationDegree[] values()
for (Geometry.GeometryAccelerationDegree c : Geometry.GeometryAccelerationDegree.values()) System.out.println(c);
public static Geometry.GeometryAccelerationDegree 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 © 2018. All rights reserved.