public enum Step extends Enum<Step>
Java class for step.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="step">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="A"/>
<enumeration value="B"/>
<enumeration value="C"/>
<enumeration value="D"/>
<enumeration value="E"/>
<enumeration value="F"/>
<enumeration value="G"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static Step |
fromValue(String v) |
String |
value() |
static Step |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Step[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Step A
public static final Step B
public static final Step C
public static final Step D
public static final Step E
public static final Step F
public static final Step G
public static Step[] values()
for (Step c : Step.values()) System.out.println(c);
public static Step 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()
Copyright © 2016 Audiveris Ltd. All rights reserved.