Package org.apache.guacamole.properties
Class ByteArrayProperty
java.lang.Object
org.apache.guacamole.properties.ByteArrayProperty
- All Implemented Interfaces:
GuacamoleProperty<byte[]>
A GuacamoleProperty whose value is a byte array. The bytes of the byte array
must be represented as a hexadecimal string within the property value. The
hexadecimal string is case-insensitive.
-
Field Summary
Fields inherited from interface org.apache.guacamole.properties.GuacamoleProperty
DELIMITER_PATTERN
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbyte[]
parseValue
(String value) Parses the given string value into the type associated with this GuacamoleProperty.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.guacamole.properties.GuacamoleProperty
getName, parseValueCollection
-
Constructor Details
-
ByteArrayProperty
public ByteArrayProperty()
-
-
Method Details
-
parseValue
Description copied from interface:GuacamoleProperty
Parses the given string value into the type associated with this GuacamoleProperty.- Specified by:
parseValue
in interfaceGuacamoleProperty<byte[]>
- Parameters:
value
- The string value to parse.- Returns:
- The parsed value.
- Throws:
org.apache.guacamole.GuacamoleException
- If an error occurs while parsing the provided value.
-