|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.nimbusds.jose.util.Base64URL
@Immutable public class Base64URL
Base64URL-encoded object.
Related specifications:
| Constructor Summary | |
|---|---|
Base64URL(String base64URL)
Creates a new Base64URL-encoded object. |
|
| Method Summary | |
|---|---|
byte[] |
decode()
Decodes this Base64URL object to a byte array. |
String |
decodeToString()
Decodes this Base64URL object to a string. |
static Base64URL |
encode(byte[] bytes)
Base64URL-encode the specified byte array. |
static Base64URL |
encode(String text)
Base64URL-encode the specified string. |
boolean |
equals(Object object)
Overrides Object.equals(). |
int |
hashCode()
Overrides Object.hashCode(). |
String |
toJSONString()
Returns a JSON string representation of this object. |
String |
toString()
Returns a Base64URL string representation of this object. |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public Base64URL(String base64URL)
base64URL - The Base64URL-encoded object value. The value is not
validated for having characters from a Base64URL
alphabet. Must not be null.| Method Detail |
|---|
public byte[] decode()
public String decodeToString()
public String toJSONString()
toJSONString in interface net.minidev.json.JSONAwarepublic String toString()
toString in class Objectpublic int hashCode()
Object.hashCode().
hashCode in class Objectpublic boolean equals(Object object)
Object.equals().
equals in class Objectobject - The object to compare to.
true if the objects have the same value, otherwise
false.public static Base64URL encode(String text)
text - The string to encode. Must be in the UTF-8 character set
and not null.
public static Base64URL encode(byte[] bytes)
bytes - The byte array to encode. Must not be null.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||