public interface UrlParam extends Cloneable
UrlState
to store
a single URL parameter. This is an internal interface used by an UrlState
.
You shouldn't need to use this interface unless you are implementing a custom
UrlFormatter
.Modifier and Type | Method and Description |
---|---|
Object |
clone()
Creates a cloned instance of the parameter.
|
String |
getEncodedKey()
The encoded key.
|
String |
getEncodedValue()
The encoded string value.
|
String |
getKey()
The parameter key.
|
String |
getValue()
The parameter string value.
|
String getKey()
String getValue()
String getEncodedKey() throws UrlFormatException
UrlFormatException
- if the key cannot be encoded.String getEncodedValue() throws UrlFormatException
UrlFormatException
- if the value cannot be encoded.Object clone()
Copyright © 2013, Oracle and/or its affiliates. All rights reserved.