java.lang.Object
org.jgrapht.nio.DefaultAttribute<T>
- Type Parameters:
T
- the underlying type
- All Implemented Interfaces:
java.io.Serializable
,Attribute
public class DefaultAttribute<T> extends java.lang.Object implements Attribute, java.io.Serializable
Default implementation of an attribute.
- Author:
- Dimitrios Michail
- See Also:
- Serialized Form
-
Field Summary
-
Constructor Summary
Constructors Constructor Description DefaultAttribute(T value, AttributeType type)
Create a new attribute -
Method Summary
Modifier and Type Method Description static Attribute
createAttribute(java.lang.Boolean value)
Create a boolean attributestatic Attribute
createAttribute(java.lang.Double value)
Create a double attributestatic Attribute
createAttribute(java.lang.Float value)
Create a float attributestatic Attribute
createAttribute(java.lang.Integer value)
Create an integer attributestatic Attribute
createAttribute(java.lang.Long value)
Create a long attributestatic Attribute
createAttribute(java.lang.String value)
Create a string attributeboolean
equals(java.lang.Object obj)
AttributeType
getType()
Get the type of the attributejava.lang.String
getValue()
Get the string value of the attributeint
hashCode()
java.lang.String
toString()
-
Field Details
-
NULL
The null attribute.
-
-
Constructor Details
-
DefaultAttribute
Create a new attribute- Parameters:
value
- the valuetype
- the type
-
-
Method Details
-
getValue
public java.lang.String getValue()Get the string value of the attribute -
toString
public java.lang.String toString()- Overrides:
toString
in classjava.lang.Object
-
getType
Get the type of the attribute -
createAttribute
Create a boolean attribute- Parameters:
value
- the value- Returns:
- the attribute
-
createAttribute
Create an integer attribute- Parameters:
value
- the value- Returns:
- the attribute
-
createAttribute
Create a long attribute- Parameters:
value
- the value- Returns:
- the attribute
-
createAttribute
Create a float attribute- Parameters:
value
- the value- Returns:
- the attribute
-
createAttribute
Create a double attribute- Parameters:
value
- the value- Returns:
- the attribute
-
createAttribute
Create a string attribute- Parameters:
value
- the value- Returns:
- the attribute
-
hashCode
public int hashCode()- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)- Overrides:
equals
in classjava.lang.Object
-