Class Fields

java.lang.Object
net.thucydides.core.annotations.Fields

public class Fields extends Object
Find the annotated fields in a given class. Used as a utility class for the higher-level annotation processing. Typical use:
     
         for (Field field : Fields.of(someClass).allFields()) {
             ...
         }