All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fest.reflect.field.package.html Maven / Gradle / Ivy








Provides a "fluent" API for field access via the Java Reflection API.

Note: Classes in this package are not intended to be used directly. To use them, you need to use the class {@link org.fest.reflect.core.Reflection org.fest.reflect.core.Reflection}.

Here are some examples:

   // import static {@link org.fest.reflect.core.Reflection org.fest.reflect.core.Reflection}.*;

   // Retrieves the value of the field "name"
   String name = {@link org.fest.reflect.core.Reflection#field(String) field}("name").{@link org.fest.reflect.field.FieldName#ofType(Class) ofType}(String.class).{@link org.fest.reflect.field.FieldType#in(Object) in}(person).{@link org.fest.reflect.field.Invoker#get() get}();
   
   // Sets the value of the field "name" to "Yoda"
   {@link org.fest.reflect.core.Reflection#field(String) field}("name").{@link org.fest.reflect.field.FieldName#ofType(Class) ofType}(String.class).{@link org.fest.reflect.field.FieldType#in(Object) in}(person).{@link org.fest.reflect.field.Invoker#set(Object) set}("Yoda");

   // Retrieves the value of the static field "count"
   int count = {@link org.fest.reflect.core.Reflection#staticField(String) staticField}("count").{@link org.fest.reflect.field.StaticFieldName#ofType(Class) ofType}(int.class).{@link org.fest.reflect.field.StaticFieldType#in(Class) in}(Person.class).{@link org.fest.reflect.field.Invoker#get() get}();
   
   // Sets the value of the static field "count" to 3
   {@link org.fest.reflect.core.Reflection#staticField(String) field}("count").{@link org.fest.reflect.field.StaticFieldName#ofType(Class) ofType}(int.class).{@link org.fest.reflect.field.StaticFieldType#in(Class) in}(Person.class).{@link org.fest.reflect.field.Invoker#set(Object) set}(3);





© 2015 - 2024 Weber Informatics LLC | Privacy Policy