public enum ArrowStyle extends Enum<ArrowStyle>
Java class for arrow-style.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="arrow-style">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="single"/>
<enumeration value="double"/>
<enumeration value="filled"/>
<enumeration value="hollow"/>
<enumeration value="paired"/>
<enumeration value="combined"/>
<enumeration value="other"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
COMBINED |
DOUBLE |
FILLED |
HOLLOW |
OTHER |
PAIRED |
SINGLE |
| Modifier and Type | Method and Description |
|---|---|
static ArrowStyle |
fromValue(String v) |
String |
value() |
static ArrowStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArrowStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrowStyle SINGLE
public static final ArrowStyle DOUBLE
public static final ArrowStyle FILLED
public static final ArrowStyle HOLLOW
public static final ArrowStyle PAIRED
public static final ArrowStyle COMBINED
public static final ArrowStyle OTHER
public static ArrowStyle[] values()
for (ArrowStyle c : ArrowStyle.values()) System.out.println(c);
public static ArrowStyle 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 ArrowStyle fromValue(String v)
Copyright © 2016 Audiveris Ltd. All rights reserved.