public enum DAOType extends Enum<DAOType>
Enum Constant and Description |
---|
FUNCTION_SYMBOL |
OBJECT_TYPE |
OTHER_TYPE_SYMBOL |
PACKAGE_SYMBOL |
RECORD_TYPE_SYMBOL |
Modifier and Type | Method and Description |
---|---|
static DAOType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DAOType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DAOType FUNCTION_SYMBOL
public static final DAOType OBJECT_TYPE
public static final DAOType PACKAGE_SYMBOL
public static final DAOType RECORD_TYPE_SYMBOL
public static final DAOType OTHER_TYPE_SYMBOL
public static DAOType[] values()
for (DAOType c : DAOType.values()) System.out.println(c);
public static DAOType 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 WSO2. All rights reserved.