public enum ConditionSheetItem extends Enum<ConditionSheetItem>
Modifier and Type | Class and Description |
---|---|
static class |
ConditionSheetItem.ItemType
Represents a kind of item.
|
Enum Constant and Description |
---|
COLUMN_COMMENT
The column comments.
|
COLUMN_NAME
The column name.
|
DATA_TYPE
The data type.
|
KEY_FLAG
The key item.
|
MATCHING_CONDITION
The matching condition.
|
NO
The column number.
|
NULL_VALUE_CONDITION
The nullity condition.
|
NULLABLE
The nullability.
|
ROW_MATCHING_CONDITION
The row matching condition.
|
SCALE
The degree of precision.
|
TABLE_NAME
The table name.
|
WIDTH
The number of digits.
|
Modifier and Type | Method and Description |
---|---|
int |
getCol()
Returns the column number.
|
String |
getName()
Returns the cell name.
|
int |
getRow()
Returns the row number.
|
static ConditionSheetItem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConditionSheetItem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConditionSheetItem NO
public static final ConditionSheetItem COLUMN_NAME
public static final ConditionSheetItem COLUMN_COMMENT
public static final ConditionSheetItem DATA_TYPE
public static final ConditionSheetItem WIDTH
public static final ConditionSheetItem SCALE
public static final ConditionSheetItem KEY_FLAG
public static final ConditionSheetItem NULLABLE
public static final ConditionSheetItem MATCHING_CONDITION
public static final ConditionSheetItem NULL_VALUE_CONDITION
public static final ConditionSheetItem TABLE_NAME
public static final ConditionSheetItem ROW_MATCHING_CONDITION
public static ConditionSheetItem[] values()
for (ConditionSheetItem c : ConditionSheetItem.values()) System.out.println(c);
public static ConditionSheetItem 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()
public int getRow()
public int getCol()
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.