public enum SuidType extends Enum<SuidType>
| Enum Constant and Description |
|---|
DDL |
DELETE
DELETE operation corresponding to SQL
|
INSERT
INSERT operation corresponding to SQL
|
MODIFY
UPDATE,INSERT,DELETE operation corresponding to SQL
|
SELECT
Select operation corresponding to SQL
|
SUID
SELECT,UPDATE,INSERT,DELETE
|
UPDATE
UPDATE operation corresponding to SQL
|
| Modifier and Type | Method and Description |
|---|---|
String |
getType() |
static SuidType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SuidType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SuidType SELECT
public static final SuidType UPDATE
public static final SuidType INSERT
public static final SuidType DELETE
public static final SuidType MODIFY
public static final SuidType SUID
public static final SuidType DDL
public static SuidType[] values()
for (SuidType c : SuidType.values()) System.out.println(c);
public static SuidType 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 getType()
Copyright © 2023. All rights reserved.