Package | Description |
---|---|
org.assertj.core.api | |
org.assertj.core.groups |
Modifier and Type | Method and Description |
---|---|
static Properties<java.lang.Object> |
AssertionsForClassTypes.extractProperty(java.lang.String propertyName)
Only delegate to
extractProperty(String) so that Assertions offers a full feature entry point
to
all AssertJ features (but you can use Properties if you prefer). |
static Properties<java.lang.Object> |
Java6Assertions.extractProperty(java.lang.String propertyName)
Deprecated.
Only delegate to
extractProperty(String) so that Assertions offers a full feature entry point
to
all AssertJ features (but you can use Properties if you prefer). |
static Properties<java.lang.Object> |
Assertions.extractProperty(java.lang.String propertyName)
Only delegate to
extractProperty(String) so that Assertions offers a full feature entry point
to
all AssertJ features (but you can use Properties if you prefer). |
default Properties<java.lang.Object> |
WithAssertions.extractProperty(java.lang.String propertyName)
Only delegate to
extractProperty(String) so that Assertions offers a full feature entry point
to
all AssertJ features (but you can use Properties if you prefer). |
static <T> Properties<T> |
AssertionsForClassTypes.extractProperty(java.lang.String propertyName,
java.lang.Class<T> propertyType)
Only delegate to
extractProperty(String) so that Assertions offers a full feature entry point
to
all AssertJ features (but you can use Properties if you prefer). |
static <T> Properties<T> |
Java6Assertions.extractProperty(java.lang.String propertyName,
java.lang.Class<T> propertyType)
Deprecated.
Only delegate to
extractProperty(String) so that Assertions offers a full feature entry point
to
all AssertJ features (but you can use Properties if you prefer). |
static <T> Properties<T> |
Assertions.extractProperty(java.lang.String propertyName,
java.lang.Class<T> propertyType)
Only delegate to
extractProperty(String) so that Assertions offers a full feature entry point
to
all AssertJ features (but you can use Properties if you prefer). |
default <T> Properties<T> |
WithAssertions.extractProperty(java.lang.String propertyName,
java.lang.Class<T> propertyType)
Only delegate to
extractProperty(String) so that Assertions offers a full feature entry point
to
all AssertJ features (but you can use Properties if you prefer). |
Modifier and Type | Method and Description |
---|---|
static Properties<java.lang.Object> |
Properties.extractProperty(java.lang.String propertyName)
Creates a new
. |
static <T> Properties<T> |
Properties.extractProperty(java.lang.String propertyName,
java.lang.Class<T> propertyType)
Creates a new
. |
<U> Properties<U> |
Properties.ofType(java.lang.Class<U> propertyType)
Specifies the target type of an instance that was previously created with
extractProperty(String) . |