keycloak
|
公開メンバ関数 | |
String | getName () |
Type | getBaseType () |
Class< V > | getJavaClass () |
AnnotatedElement | getAnnotatedElement () |
Member | getMember () |
V | getValue (Object instance) |
void | setValue (Object instance, V value) |
Class<?> | getDeclaringClass () |
boolean | isReadOnly () |
void | setAccessible () |
boolean | isAnnotationPresent (Class<? extends Annotation > annotation) |
AnnotatedElement org.keycloak.models.utils.reflection.Property< V >.getAnnotatedElement | ( | ) |
Get the element responsible for retrieving the property value
org.keycloak.models.utils.reflection.MethodPropertyImpl< V >, org.keycloak.models.utils.reflection.MethodProperty< V >で実装されています。
Type org.keycloak.models.utils.reflection.Property< V >.getBaseType | ( | ) |
Returns the property type
org.keycloak.models.utils.reflection.MethodPropertyImpl< V >で実装されています。
Class<?> org.keycloak.models.utils.reflection.Property< V >.getDeclaringClass | ( | ) |
Returns the class that declares the property
org.keycloak.models.utils.reflection.MethodPropertyImpl< V >で実装されています。
Class<V> org.keycloak.models.utils.reflection.Property< V >.getJavaClass | ( | ) |
Returns the property type
org.keycloak.models.utils.reflection.MethodPropertyImpl< V >で実装されています。
Member org.keycloak.models.utils.reflection.Property< V >.getMember | ( | ) |
Get the member responsible for retrieving the property value
org.keycloak.models.utils.reflection.MethodPropertyImpl< V >で実装されています。
String org.keycloak.models.utils.reflection.Property< V >.getName | ( | ) |
Returns the name of the property. If the property is a field, then the field name is returned. Otherwise, if the property is a method, then the name that is returned is the getter method name without the "get" or "is" prefix, and a lower case first letter.
org.keycloak.models.utils.reflection.MethodPropertyImpl< V >で実装されています。
V org.keycloak.models.utils.reflection.Property< V >.getValue | ( | Object | instance | ) |
Returns the property value for the specified bean. The property to be returned is either a field or getter method.
bean | The bean to read the property from |
ClassCastException | if the value is not of the type V |
org.keycloak.models.utils.reflection.MethodPropertyImpl< V >で実装されています。
boolean org.keycloak.models.utils.reflection.Property< V >.isAnnotationPresent | ( | Class<? extends Annotation > | annotation | ) |
Indicates whether the given annotation
is defined for this property. This method will consider the annotations present in both field and accessor method.
annotation | The Annotation to check. |
org.keycloak.models.utils.reflection.MethodPropertyImpl< V >で実装されています。
boolean org.keycloak.models.utils.reflection.Property< V >.isReadOnly | ( | ) |
Indicates whether this is a read-only property
org.keycloak.models.utils.reflection.MethodPropertyImpl< V >で実装されています。
void org.keycloak.models.utils.reflection.Property< V >.setAccessible | ( | ) |
Calls the setAccessible method on the underlying member(s).
The operation should be performed within a PrivilegedAction
org.keycloak.models.utils.reflection.MethodPropertyImpl< V >で実装されています。
void org.keycloak.models.utils.reflection.Property< V >.setValue | ( | Object | instance, |
V | value | ||
) |
This method sets the property value for a specified bean to the specified value. The property to be set is either a field or setter method.
bean | The bean containing the property to set |
value | The new property value |
org.keycloak.models.utils.reflection.MethodPropertyImpl< V >で実装されています。