Package io.keikai.model.sys.dependency
Enum Ref.RefType
- java.lang.Object
-
- java.lang.Enum<Ref.RefType>
-
- io.keikai.model.sys.dependency.Ref.RefType
-
- All Implemented Interfaces:
Serializable
,Comparable<Ref.RefType>
- Enclosing interface:
- Ref
public static enum Ref.RefType extends Enum<Ref.RefType>
- Since:
- 3.5.0
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Ref.RefType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Ref.RefType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CELL
public static final Ref.RefType CELL
-
AREA
public static final Ref.RefType AREA
-
SHEET
public static final Ref.RefType SHEET
-
BOOK
public static final Ref.RefType BOOK
-
NAME
public static final Ref.RefType NAME
-
OBJECT
public static final Ref.RefType OBJECT
-
INDIRECT
public static final Ref.RefType INDIRECT
-
OFFSET
public static final Ref.RefType OFFSET
-
TABLE
public static final Ref.RefType TABLE
-
CONDITIONAL
public static final Ref.RefType CONDITIONAL
-
STYLE
public static final Ref.RefType STYLE
-
-
Method Detail
-
values
public static Ref.RefType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Ref.RefType c : Ref.RefType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Ref.RefType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-