public static enum DataBase.Protection extends java.lang.Enum<DataBase.Protection>
Enum Constant and Description |
---|
NONE
No protection provided.
|
READONLY |
SELECT_READONLY_BY_DEFAULT |
Modifier and Type | Method and Description |
---|---|
static DataBase.Protection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataBase.Protection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataBase.Protection NONE
public static final DataBase.Protection READONLY
public static final DataBase.Protection SELECT_READONLY_BY_DEFAULT
public static DataBase.Protection[] values()
for (DataBase.Protection c : DataBase.Protection.values()) System.out.println(c);
public static DataBase.Protection valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullstSoftware Copyright © 2001-2014 stSoftware All Rights Reserved.