public enum InfoSelection extends Enum<InfoSelection> implements Serializable
Java class for infoSelection.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="infoSelection"> <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> <enumeration value="all"/> <enumeration value="hidden"/> <enumeration value="visible"/> </restriction> </simpleType>
Modifier and Type | Method and Description |
---|---|
static InfoSelection |
fromValue(String v) |
String |
value() |
static InfoSelection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InfoSelection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InfoSelection ALL
public static final InfoSelection HIDDEN
public static final InfoSelection VISIBLE
public static InfoSelection[] values()
for (InfoSelection c : InfoSelection.values()) System.out.println(c);
public static InfoSelection 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 InfoSelection fromValue(String v)
Copyright © 2004–2021 The Apache Software Foundation. All rights reserved.