Package org.jgrapht.io
Enum AttributeType
- java.lang.Object
-
- java.lang.Enum<AttributeType>
-
- org.jgrapht.io.AttributeType
-
- All Implemented Interfaces:
Serializable
,Comparable<AttributeType>
@Deprecated public enum AttributeType extends Enum<AttributeType>
Deprecated.In favor of nio package.Denotes the type of an attribute.- Author:
- Dimitrios Michail
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static AttributeType
create(String value)
Deprecated.Create a type from a string representationString
toString()
Deprecated.Get a string representation of the attribute typestatic AttributeType
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static AttributeType[]
values()
Deprecated.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
Deprecated.
-
BOOLEAN
public static final AttributeType BOOLEAN
Deprecated.
-
INT
public static final AttributeType INT
Deprecated.
-
LONG
public static final AttributeType LONG
Deprecated.
-
FLOAT
public static final AttributeType FLOAT
Deprecated.
-
DOUBLE
public static final AttributeType DOUBLE
Deprecated.
-
STRING
public static final AttributeType STRING
Deprecated.
-
HTML
public static final AttributeType HTML
Deprecated.
-
UNKNOWN
public static final AttributeType UNKNOWN
Deprecated.
-
-
Method Detail
-
values
public static AttributeType[] values()
Deprecated.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)
Deprecated.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()
Deprecated.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)
Deprecated.Create a type from a string representation- Parameters:
value
- the name of the type- Returns:
- the attribute type
-
-