BatchQueryItem

annotation class BatchQueryItem

The BatchQueryItem annotation is useful to indicate an object which its scope is the support to handle the data and manipulate them during the batch operations



 // not mandatory
  description= """
         Informative description about the scope of the this item, such the operation where is used what data are
         manipulated, etc...
         """ // suggested text block
)
public class SimpleItem {

    private final String id;

    private final String ownedEntityId;

    ... rest of the item ...

}

Author

N7ghtm4r3 - Tecknobit

Since

1.0.8

Functions

Link copied to clipboard
abstract fun annotationType(): Class<out Annotation>
Link copied to clipboard
abstract fun description(): String
Informative description about the behavior of the implemented batch item
Link copied to clipboard
abstract fun equals(p: Any): Boolean
Link copied to clipboard
abstract fun hashCode(): Int
Link copied to clipboard
abstract fun toString(): String