public enum StickMaterial extends Enum<StickMaterial>
Java class for stick-material.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="stick-material">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="soft"/>
<enumeration value="medium"/>
<enumeration value="hard"/>
<enumeration value="shaded"/>
<enumeration value="x"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static StickMaterial |
fromValue(String v) |
String |
value() |
static StickMaterial |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StickMaterial[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StickMaterial SOFT
public static final StickMaterial MEDIUM
public static final StickMaterial HARD
public static final StickMaterial SHADED
public static final StickMaterial X
public static StickMaterial[] values()
for (StickMaterial c : StickMaterial.values()) System.out.println(c);
public static StickMaterial 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 nullpublic String value()
public static StickMaterial fromValue(String v)
Copyright © 2016 Audiveris Ltd. All rights reserved.