Java org.apache.wicket.util.value IValueMap fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Implementation

org.apache.wicket.util.value.IValueMap has the following implementations.
Click this link to see all its implementation.

Method

booleangetAsBoolean(String key, boolean defaultValue)
Retrieves a boolean value by key.
booleangetBoolean(final String key)
Retrieves a boolean value by key.
intgetInt(final String key, final int defaultValue)
Retrieves an int value by key, using a default value if not found.
StringgetString(final String key)
Retrieves a String by key.
String[]getStringArray(final String key)
Retrieves a String array by key.
IValueMapmakeImmutable()
Makes this IValueMap immutable by changing the underlying map representation to a Collections.unmodifiableMap.