public enum EHivePrivilegeType extends Enum<EHivePrivilegeType>
Enum Constant and Description |
---|
all |
alter |
create |
drop |
index |
lock |
select |
show_database |
update |
Modifier and Type | Method and Description |
---|---|
static EHivePrivilegeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EHivePrivilegeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EHivePrivilegeType all
public static final EHivePrivilegeType alter
public static final EHivePrivilegeType update
public static final EHivePrivilegeType create
public static final EHivePrivilegeType drop
public static final EHivePrivilegeType index
public static final EHivePrivilegeType lock
public static final EHivePrivilegeType select
public static final EHivePrivilegeType show_database
public static EHivePrivilegeType[] values()
for (EHivePrivilegeType c : EHivePrivilegeType.values()) System.out.println(c);
public static EHivePrivilegeType 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 © 2019. All rights reserved.