public enum STConnectorPoint extends Enum<STConnectorPoint>
Java class for ST_ConnectorPoint.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_ConnectorPoint">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="auto"/>
<enumeration value="bCtr"/>
<enumeration value="ctr"/>
<enumeration value="midL"/>
<enumeration value="midR"/>
<enumeration value="tCtr"/>
<enumeration value="bL"/>
<enumeration value="bR"/>
<enumeration value="tL"/>
<enumeration value="tR"/>
<enumeration value="radial"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AUTO
Auto
|
B_CTR
Bottom Center
|
B_L
Bottom Left
|
B_R
Bottom Right
|
CTR
Center
|
MID_L
Middle Left
|
MID_R
Middle Right
|
RADIAL
Radial
|
T_CTR
Top Center
|
T_L
Top Left
|
T_R
Top Right
|
| Modifier and Type | Method and Description |
|---|---|
static STConnectorPoint |
fromValue(String v) |
String |
value() |
static STConnectorPoint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STConnectorPoint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STConnectorPoint AUTO
public static final STConnectorPoint B_CTR
public static final STConnectorPoint CTR
public static final STConnectorPoint MID_L
public static final STConnectorPoint MID_R
public static final STConnectorPoint T_CTR
public static final STConnectorPoint B_L
public static final STConnectorPoint B_R
public static final STConnectorPoint T_L
public static final STConnectorPoint T_R
public static final STConnectorPoint RADIAL
public static STConnectorPoint[] values()
for (STConnectorPoint c : STConnectorPoint.values()) System.out.println(c);
public static STConnectorPoint 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 STConnectorPoint fromValue(String v)
Copyright © 2007-2020. All Rights Reserved.