public enum Scope extends Enum<Scope>
Java class for Scope.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="Scope">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="row"/>
<enumeration value="col"/>
<enumeration value="rowgroup"/>
<enumeration value="colgroup"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static Scope |
fromValue(String v) |
String |
value() |
static Scope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Scope ROW
public static final Scope COL
public static final Scope ROWGROUP
public static final Scope COLGROUP
public static Scope[] values()
for (Scope c : Scope.values()) System.out.println(c);
public static Scope 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.