public enum Updatability extends Enum<Updatability>
Enum Constant and Description |
---|
ONCREATE |
READONLY |
READWRITE |
WHENCHECKEDOUT |
Modifier and Type | Method and Description |
---|---|
static Updatability |
fromValue(String v) |
String |
value() |
static Updatability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Updatability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Updatability READONLY
public static final Updatability READWRITE
public static final Updatability WHENCHECKEDOUT
public static final Updatability ONCREATE
public static Updatability[] values()
for (Updatability c : Updatability.values()) System.out.println(c);
public static Updatability 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 Updatability fromValue(String v)
Copyright © 2009-2013 The Apache Software Foundation. All Rights Reserved.