Uses of Class
com.gengoai.reflection.RField
-
Packages that use RField Package Description com.gengoai.application Interfaces and base classes that take some of the boilerplate out of creating command line and GUI applications.com.gengoai.reflection Creation and manipulation of objects via reflection. -
-
Uses of RField in com.gengoai.application
Constructors in com.gengoai.application with parameters of type RField Constructor Description NamedOption(RField field)
Instantiates a new Named option. -
Uses of RField in com.gengoai.reflection
Methods in com.gengoai.reflection that return RField Modifier and Type Method Description RField
Reflect. getField(String name)
Gets the field with the given name.RField
RField. set(Object value)
Sets the value of this field.Methods in com.gengoai.reflection that return types with arguments of type RField Modifier and Type Method Description List<RField>
Reflect. getFields()
Gets all fields.List<RField>
Reflect. getFieldsWhere(@NonNull SerializablePredicate<RField> predicate)
Gets all fields that match the given predicateList<RField>
Reflect. getFieldsWithAnnotation(@NonNull Class<? extends Annotation>... annotationClasses)
Gets the fields for the class with at least of the given annotations.Method parameters in com.gengoai.reflection with type arguments of type RField Modifier and Type Method Description List<RField>
Reflect. getFieldsWhere(@NonNull SerializablePredicate<RField> predicate)
Gets all fields that match the given predicate
-