public enum ORMError extends Enum<ORMError>
项目名称: object-sql
描述: Error
创建时间:2020/3/19 13:42
公司信息:objectsql
| Enum Constant and Description |
|---|
CLASS_COLUMN_IS_EMPTY |
CLASS_TABLE_ANNOTATION_NOT_FOUND |
TABLE_ANNOTATION_IS_NULL |
TABLE_NAME_IS_EMPTY |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static ORMError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ORMError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ORMError TABLE_ANNOTATION_IS_NULL
public static final ORMError TABLE_NAME_IS_EMPTY
public static final ORMError CLASS_TABLE_ANNOTATION_NOT_FOUND
public static final ORMError CLASS_COLUMN_IS_EMPTY
public static ORMError[] values()
for (ORMError c : ORMError.values()) System.out.println(c);
public static ORMError 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 getName()
Copyright © 2024. All rights reserved.