Klasse ReflectionUtils

java.lang.Object
com.restfb.util.ReflectionUtils

public final class ReflectionUtils extends Object
A collection of reflection-related utility methods.
Seit:
1.6
Autor:
Mark Allen, Igor Kabiljo, Scott Hernandez
  • Methodendetails

    • setJson

      public static void setJson(Object cls, String obj)
    • isPrimitive

      public static boolean isPrimitive(Object object)
      Is the given object a primitive type or wrapper for a primitive type?
      Parameter:
      object - The object to check for primitive-ness.
      Gibt zurück:
      true if object is a primitive type or wrapper for a primitive type, false otherwise.
    • findFieldsWithAnnotation

      public static <T extends Annotation> List<ReflectionUtils.FieldWithAnnotation<T>> findFieldsWithAnnotation(Class<?> type, Class<T> annotationType)
      Finds fields on the given type and all of its superclasses annotated with annotations of type annotationType.
      Typparameter:
      T - The annotation type.
      Parameter:
      type - The target type token.
      annotationType - The annotation type token.
      Gibt zurück:
      A list of field/annotation pairs.
    • findMethodsWithAnnotation

      public static <T extends Annotation> List<Method> findMethodsWithAnnotation(Class<?> type, Class<T> annotationType)
      Finds methods on the given type and all of its superclasses annotated with annotations of type annotationType.

      These results are cached to mitigate performance overhead.

      Typparameter:
      T - The annotation type.
      Parameter:
      type - The target type token.
      annotationType - The annotation type token.
      Gibt zurück:
      A list of methods with the given annotation.
      Seit:
      1.6.11
    • getFirstParameterizedTypeArgument

      public static Class<?> getFirstParameterizedTypeArgument(Field field)
      For a given field, get its first parameterized type argument.

      For example, a field of type List<Long> would have a first type argument of Long.class.

      If the field has no type arguments, null is returned.

      Parameter:
      field - The field to check.
      Gibt zurück:
      The field's first parameterized type argument, or null if none exists.
    • getSecondParameterizedTypeArgument

      For a given field, get its second parameterized type argument. If the field has no type arguments, null is returned.
      Parameter:
      field - The field to check.
      Gibt zurück:
      The field's second parameterized type argument, or null if none exists.
    • getAccessors

      public static List<Method> getAccessors(Class<?> clazz)
      Gets all accessor methods for the given clazz.
      Parameter:
      clazz - The class for which accessors are extracted.
      Gibt zurück:
      All accessor methods for the given clazz.
    • toString

      public static String toString(Object object)
      Reflection-based implementation of Object.toString().
      Parameter:
      object - The object to convert to a string representation.
      Gibt zurück:
      A string representation of object.
      Löst aus:
      IllegalStateException - If an error occurs while performing reflection operations.
    • hashCode

      public static int hashCode(Object object)
      Reflection-based implementation of Object.hashCode().
      Parameter:
      object - The object to hash.
      Gibt zurück:
      A hashcode for object.
      Löst aus:
      IllegalStateException - If an error occurs while performing reflection operations.
    • equals

      public static boolean equals(Object object1, Object object2)
      Reflection-based implementation of Object.equals(Object).
      Parameter:
      object1 - One object to compare.
      object2 - Another object to compare.
      Gibt zurück:
      true if the objects are equal, false otherwise.
      Löst aus:
      IllegalStateException - If an error occurs while performing reflection operations.
    • createInstance

      public static <T> T createInstance(Class<T> type)
      Creates a new instance of the given type.

      Typparameter:
      T - Java type to map to.
      Parameter:
      type - Type token.
      Gibt zurück:
      A new instance of type.
      Löst aus:
      FacebookJsonMappingException - If an error occurs when creating a new instance (type is inaccessible, doesn't have a no-arg constructor, etc.)