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