Uses of Interface
org.instancio.Selector
Packages that use Selector
-
Uses of Selector in org.instancio
Methods in org.instancio that return SelectorModifier and TypeMethodDescriptionstatic SelectorSelect all instances of the given type, not including subtypes.static SelectorSelect.allBooleans()Selects all booleans, primitive and wrapper.static SelectorSelect.allBytes()Selects all bytes, primitive and wrapper.static SelectorSelect.allChars()Selects all characters, primitive and wrapper.static SelectorSelect.allDoubles()Selects all doubles, primitive and wrapper.static SelectorSelect.allFloats()Selects all floats, primitive and wrapper.static SelectorSelect.allInts()Selects all integers, primitive and wrapper.static SelectorSelect.allLongs()Selects all longs, primitive and wrapper.static SelectorSelect.allShorts()Selects all shorts, primitive and wrapper.static SelectorSelect.allStrings()Shorthand forall(String.class).static SelectorSelects a field by name in the specified class.static SelectorSelects a field by name declared in the class being created.static <T,R> Selector Select.field(GetMethodSelector<T, R> methodReference) Selects a field based on the given method reference.static SelectorSelects a setter method by name in the specified class.static SelectorSelects a setter method by name and parameter type in the specified class.static SelectorSelects a setter by name declared in the class being created.static <T,U> Selector Select.setter(SetMethodSelector<T, U> methodReference) Selects a setter method based on the given method reference.