public static enum MBLayer.Visibility extends Enum<MBLayer.Visibility>
Optional enum. One of visible, none. Defaults to visible.
Enum Constant and Description |
---|
NONE
The layer is not shown.
|
VISIBLE
The layer is shown.
|
Modifier and Type | Method and Description |
---|---|
static MBLayer.Visibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MBLayer.Visibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MBLayer.Visibility VISIBLE
public static final MBLayer.Visibility NONE
public static MBLayer.Visibility[] values()
for (MBLayer.Visibility c : MBLayer.Visibility.values()) System.out.println(c);
public static MBLayer.Visibility 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 nullCopyright © 1996–2022 Geotools. All rights reserved.