Package | Description |
---|---|
net.bytebuddy.description.field |
Contains descriptions of Java fields.
|
net.bytebuddy.description.type |
Contains descriptions of Java types and packages.
|
net.bytebuddy.dynamic.scaffold |
This package contains helper types and implementations that are responsible for the actual writing of a byte array
representing a Java class.
|
net.bytebuddy.matcher |
Contains an API for matching Java byte code entities.
|
net.bytebuddy.pool |
Classes of this package allow for the creating
TypeDescription s without
loading any classes. |
Modifier and Type | Class and Description |
---|---|
static class |
FieldList.Empty
An implementation of an empty field list.
|
static class |
FieldList.Explicit
A wrapper implementation of a field list for a given list of field descriptions.
|
static class |
FieldList.ForLoadedField
An implementation of a field list for an array of loaded fields.
|
Modifier and Type | Method and Description |
---|---|
protected FieldList |
FieldList.ForLoadedField.wrap(List<FieldDescription> values) |
protected FieldList |
FieldList.Explicit.wrap(List<FieldDescription> values) |
Modifier and Type | Method and Description |
---|---|
FieldList |
TypeDescription.getDeclaredFields()
Returns a list of fields that are declared by this type.
|
FieldList |
TypeDescription.ForLoadedType.getDeclaredFields() |
FieldList |
TypeDescription.ArrayProjection.getDeclaredFields() |
FieldList |
TypeDescription.Latent.getDeclaredFields() |
Modifier and Type | Method and Description |
---|---|
FieldList |
InstrumentedType.AbstractBase.getDeclaredFields() |
Constructor and Description |
---|
DeclaringFieldMatcher(ElementMatcher<? super FieldList> fieldMatcher)
Creates a new matcher for a type's declared fields.
|
Modifier and Type | Method and Description |
---|---|
FieldList |
TypePool.LazyTypeDescription.getDeclaredFields() |
Copyright © 2014–2015. All rights reserved.