Package org.apache.guacamole.properties
Class BooleanGuacamoleProperty
java.lang.Object
org.apache.guacamole.properties.BooleanGuacamoleProperty
- All Implemented Interfaces:
GuacamoleProperty<Boolean>
A GuacamoleProperty whose value is an boolean. Legal true values are "true",
or "false". Case does not matter.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionparseValue
(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
-
BooleanGuacamoleProperty
public BooleanGuacamoleProperty()
-
-
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<Boolean>
- 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.
-