- java.lang.Object
-
- java.lang.Enum<AttributeType>
-
- org.jgrapht.nio.AttributeType
-
- All Implemented Interfaces:
Serializable
,Comparable<AttributeType>
public enum AttributeType extends Enum<AttributeType>
Denotes the type of an attribute.- Author:
- Dimitrios Michail
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AttributeType
create(String value)
Create a type from a string representationString
toString()
Get a string representation of the attribute typestatic AttributeType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AttributeType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NULL
public static final AttributeType NULL
-
BOOLEAN
public static final AttributeType BOOLEAN
-
INT
public static final AttributeType INT
-
LONG
public static final AttributeType LONG
-
FLOAT
public static final AttributeType FLOAT
-
DOUBLE
public static final AttributeType DOUBLE
-
STRING
public static final AttributeType STRING
-
HTML
public static final AttributeType HTML
-
UNKNOWN
public static final AttributeType UNKNOWN
-
IDENTIFIER
public static final AttributeType IDENTIFIER
-
-
Method Detail
-
values
public static AttributeType[] 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 (AttributeType c : AttributeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttributeType 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
-
toString
public String toString()
Get a string representation of the attribute type- Overrides:
toString
in classEnum<AttributeType>
- Returns:
- the string representation of the attribute type
-
create
public static AttributeType create(String value)
Create a type from a string representation- Parameters:
value
- the name of the type- Returns:
- the attribute type
-
-