AnnotationEncodeValueMatcher

Constructors

Link copied to clipboard
constructor()

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard

Create annotationValue matcher.

----------------

Link copied to clipboard
Link copied to clipboard

Create boolValue matcher.

----------------

Link copied to clipboard

Create byteValue matcher.

----------------

Link copied to clipboard

Create charValue matcher.

----------------

Link copied to clipboard

Create classValue matcher.

----------------

Link copied to clipboard

Create doubleValue matcher. Because floating-point numbers are affected by precision, so abs(value - realValue) < 1e-6 will match successfully.

Link copied to clipboard

Create enumValue matcher. The value of enum is a Field, so here use FieldMatcher.

----------------

Link copied to clipboard

Create floatValue matcher. Because floating-point numbers are affected by precision, so abs(value - realValue) < 1e-6 will match successfully.

Link copied to clipboard

Create intValue matcher.

----------------

Link copied to clipboard

Create longValue matcher.

----------------

Link copied to clipboard

Create methodValue matcher. Note: only dalvik.system type annotations contain this element.

Link copied to clipboard

Create nullValue matcher. Note: only dalvik.system type annotations contain this element.

Link copied to clipboard

Create numberValue matcher.

----------------

Link copied to clipboard

Create shortValue matcher.

----------------

Link copied to clipboard
fun stringValue(value: String, matchType: StringMatchType = StringMatchType.Contains, ignoreCase: Boolean = false): AnnotationEncodeValueMatcher

Create stringValue matcher.

----------------