keycloak-federation
|
公開メンバ関数 | |
Variant (T o) throws IllegalArgumentException | |
Variant (T o, Type type) throws IllegalArgumentException | |
Variant (T o, String sig) throws IllegalArgumentException | |
T | getValue () |
Type | getType () |
String | getSig () |
String | toString () |
boolean | equals (Object other) |
非公開変数類 | |
final T | o |
final Type | type |
final String | sig |
A Wrapper class for Variant values. A method on DBus can send or receive a Variant. This will wrap another value whose type is determined at runtime. The Variant may be parameterized to restrict the types it may accept.
|
inline |
Create a Variant from a basic type object.
o | The wrapped value. |
IllegalArugmentException | If you try and wrap Null or an object of a non-basic type. |
|
inline |
Create a Variant.
o | The wrapped value. |
type | The explicit type of the value. |
IllegalArugmentException | If you try and wrap Null or an object which cannot be sent over DBus. |
|
inline |
Create a Variant.
o | The wrapped value. |
sig | The explicit type of the value, as a dbus type string. |
IllegalArugmentException | If you try and wrap Null or an object which cannot be sent over DBus. |
|
inline |
Compare this Variant with another by comparing contents
|
inline |
Return the dbus signature of the wrapped value.
|
inline |
Return the type of the wrapped value.
|
inline |
Return the wrapped value.
|
inline |
Format the Variant as a string.
|
private |
|
private |
|
private |