org.osm2world.core.target.common.material
public static enum Material.Shadow extends Enum<Material.Shadow>
Enum Constant and Description |
---|
FALSE
casts no shadows
|
TRUE
casts shadows
|
Modifier and Type | Method and Description |
---|---|
static Material.Shadow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Material.Shadow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Material.Shadow TRUE
public static final Material.Shadow FALSE
public static Material.Shadow[] values()
for (Material.Shadow c : Material.Shadow.values()) System.out.println(c);
public static Material.Shadow 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 null