Package org.geotools.xml.impl
Class HexBinary
- Object
-
- HexBinary
-
public class HexBinary extends Object
Utility class for xs:hexbinary.
-
-
Constructor Summary
Constructors Constructor Description HexBinary()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static byte[]
decode(String pValue)
Converts the stringpValue
into an array of hex bytes.static String
encode(byte[] pHexBinary)
Converts the byte arraypHexBinary
into a string.static byte[]
getClone(byte[] pHexBinary)
Creates a clone of the given byte array.
-
-
-
Method Detail
-
getClone
public static byte[] getClone(byte[] pHexBinary)
Creates a clone of the given byte array.
-
decode
public static byte[] decode(String pValue)
Converts the stringpValue
into an array of hex bytes.
-
encode
public static String encode(byte[] pHexBinary)
Converts the byte arraypHexBinary
into a string.
-
-