public enum STRType extends Enum<STRType>
Java class for ST_RType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_RType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="arc"/>
<enumeration value="callout"/>
<enumeration value="connector"/>
<enumeration value="align"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ALIGN
Alignment Rule
|
ARC
Arc Rule
|
CALLOUT
Callout Rule
|
CONNECTOR
Connector Rule
|
| Modifier and Type | Method and Description |
|---|---|
static STRType |
fromValue(String v) |
String |
value() |
static STRType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STRType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STRType ARC
public static final STRType CALLOUT
public static final STRType CONNECTOR
public static final STRType ALIGN
public static STRType[] values()
for (STRType c : STRType.values()) System.out.println(c);
public static STRType 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 © 2007-2019. All Rights Reserved.