Java org.apache.wicket.util.string StringValue fields, constructors, methods, implement or subclass

Example usage for Java org.apache.wicket.util.string StringValue fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.wicket.util.string StringValue.

The text is from its open source code.

Subclass

org.apache.wicket.util.string.StringValue has subclasses.
Click this link to see all its subclasses.

Method

booleanequals(final Object obj)
booleanisEmpty()
Returns whether the text is null or empty
booleanisNull()
Returns whether the text is null.
Tto(final Class type)
Converts this StringValue to a given type.
booleantoBoolean()
Convert this text to a boolean.
booleantoBoolean(final boolean defaultValue)
Convert to boolean, returning default value if text is inconvertible.
BooleantoBooleanObject()
Convert this text to a boolean.
doubletoDouble()
Convert this text to a double.
inttoInt()
Convert this text to an int.
IntegertoInteger()
Convert this text to an Integer.
longtoLong()
Convert this text to a long.
longtoLong(final long defaultValue)
Convert to long integer, returning default value if text is inconvertible.
LongtoLongObject()
Convert this text to a Long.
LongtoOptionalLong()
Convert to object types, returning null if text is null or empty.
StringtoOptionalString()
Convert to object types, returning null if text is null.
StringtoString(final String defaultValue)
Convert to primitive types, returning default value if text is null.
StringtoString()
StringValuevalueOf(final double value)
Converts the given input to an instance of StringValue.
StringValuevalueOf(final Object object)
Converts the given input to an instance of StringValue.
StringValuevalueOf(final String string)
Converts the given input to an instance of StringValue.
StringValuevalueOf(final AppendingStringBuffer buffer)
Converts the given input to an instance of StringValue.
StringValuevalueOf(final double value, final Locale locale)
Converts the given input to an instance of StringValue.
StringValuevalueOf(final Object object, final Locale locale)
Converts the given input to an instance of StringValue.
StringValuevalueOf(final String string, final Locale locale)
Converts the given input to an instance of StringValue.