|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Fields | |
com.lonniepryor.blues.util | Common utility classes used throughout the Blues Framework. |
Uses of Fields in com.lonniepryor.blues.util |
Methods in com.lonniepryor.blues.util that return Fields | |
static Fields |
Fields.declaredPublic()
Returns a specification matching public fields. |
static Fields |
Fields.declaredProtected()
Returns a specification matching protected fields. |
static Fields |
Fields.declaredPrivate()
Returns a specification matching private fields. |
static Fields |
Fields.declaredPackageProtected()
Returns a specification matching package protected fields. |
static Fields |
Fields.declaredFinal()
Returns a specification matching final fields. |
static Fields |
Fields.declaredStatic()
Returns a specification matching static fields. |
static Fields |
Fields.declaredTransient()
Returns a specification matching transient fields. |
static Fields |
Fields.declaredVolatile()
Returns a specification matching volatile fields. |
static Fields |
Fields.equalTo(java.lang.reflect.Field toTest)
Creates a new specification satisfied by Fields equal to the supplied Field. |
static Fields |
Fields.declaredOn(Types specification)
Creates a new specification satisfied only by Fields declared on the Types that satisfy the supplied specification. |
static Fields |
Fields.named(java.lang.String namePattern)
Creates a new specification satisfied by Fields whose names match the supplied pattern. |
static Fields |
Fields.named(Strings specification)
Creates a new specification satisfied by Fields whose names match the supplied specification. |
static Fields |
Fields.ofType(Types specification)
Creates a new specification satisfied by Fields whose type satisfy the supplied specification. |
static Fields |
Fields.parse(java.lang.String fieldsPattern)
Parses a pattern string into a complete Fields specification. |
Fields |
Fields.and(Fields specification)
Returns a specification representing a logical AND of this specification on the left and the supplied specification on the right. |
Fields |
Fields.or(Fields specification)
Returns a specification representing a logical OR of this specification on the left and the supplied specification on the right. |
Fields |
Fields.not()
Returns a specification representing a logical NOT of this specification. |
Methods in com.lonniepryor.blues.util with parameters of type Fields | |
Fields |
Fields.and(Fields specification)
Returns a specification representing a logical AND of this specification on the left and the supplied specification on the right. |
Fields |
Fields.or(Fields specification)
Returns a specification representing a logical OR of this specification on the left and the supplied specification on the right. |
static Types |
Types.withAField(Fields specification)
Creates a new specification satisfied by Types that have at least one field matching the supplied specification. |
static Types |
Types.withADeclaredField(Fields specification)
Creates a new specification satisfied by Types that have at least one declared field matching the supplied specification. |
static Types |
Types.withAllFields(Fields specification)
Creates a new specification satisfied by Types that have all fields matching the supplied specification. |
static Types |
Types.withAllDeclaredConstructors(Fields specification)
Creates a new specification satisfied by Types that have all declared fields matching the supplied specification. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |