public enum ULStyle extends Enum<ULStyle>
Java class for ULStyle.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ULStyle"> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="disc"/> <enumeration value="square"/> <enumeration value="circle"/> </restriction> </simpleType>
Modifier and Type | Method and Description |
---|---|
static ULStyle |
fromValue(String v) |
String |
value() |
static ULStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ULStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ULStyle DISC
public static final ULStyle SQUARE
public static final ULStyle CIRCLE
public static ULStyle[] values()
for (ULStyle c : ULStyle.values()) System.out.println(c);
public static ULStyle 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 © 2021 Project Mixer2. All rights reserved.