Package org.odftoolkit.odfdom.type
Class Vector3D
- java.lang.Object
-
- org.odftoolkit.odfdom.type.Vector3D
-
- All Implemented Interfaces:
OdfDataType
public class Vector3D extends Object implements OdfDataType
This class represents the in OpenDocument format used data type vector3D
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static boolean
isValid(String stringValue)
check if the specified String instance is a valid vector3D data typeString
toString()
Returns a String Object representing this Vector3D's valuestatic Vector3D
valueOf(String stringValue)
Returns a Vector3D instance representing the specified String value
-
-
-
Constructor Detail
-
Vector3D
public Vector3D(String vector3D)
Construct Vector3D by the parsing the given string- Parameters:
vector3D
- The String to be parsed into Vector3D
-
-
Method Detail
-
toString
public String toString()
Returns a String Object representing this Vector3D's value
-
valueOf
public static Vector3D valueOf(String stringValue)
Returns a Vector3D instance representing the specified String value- Parameters:
stringValue
- a String value- Returns:
- return a Vector3D instance representing stringValue
-
-