org.fourthline.cling.model.types
Class BinHexDatatype
java.lang.Object
org.fourthline.cling.model.types.AbstractDatatype<byte[]>
org.fourthline.cling.model.types.BinHexDatatype
- All Implemented Interfaces:
- Datatype<byte[]>
public class BinHexDatatype
- extends AbstractDatatype<byte[]>
- Author:
- Christian Bauer
|
Method Summary |
String |
getString(byte[] value)
Transforms a value supported by this datatype into a string representation. |
Class<byte[]> |
getValueType()
|
byte[] |
valueOf(String s)
Transforms a string representation into a value of the supported type. |
BinHexDatatype
public BinHexDatatype()
getValueType
public Class<byte[]> getValueType()
- Overrides:
getValueType in class AbstractDatatype<byte[]>
valueOf
public byte[] valueOf(String s)
throws InvalidValueException
- Description copied from interface:
Datatype
- Transforms a string representation into a value of the supported type.
- Specified by:
valueOf in interface Datatype<byte[]>- Overrides:
valueOf in class AbstractDatatype<byte[]>
- Parameters:
s - The string representation of a value.
- Returns:
- The converted value or
null if the string was null or empty.
- Throws:
InvalidValueException - If the string couldn't be parsed.
getString
public String getString(byte[] value)
throws InvalidValueException
- Description copied from interface:
Datatype
- Transforms a value supported by this datatype into a string representation.
This method calls Datatype.isValid(Object) before converting the value, it throws
an exception if validation fails.
- Specified by:
getString in interface Datatype<byte[]>- Overrides:
getString in class AbstractDatatype<byte[]>
- Parameters:
value - The value to transform.
- Returns:
- The transformed value as a string, or an empty string when the value is null, never returns
null.
- Throws:
InvalidValueException
Copyright © 2013 4th Line GmbH, Switzerland. All Rights Reserved.