Annotation Type GridToStringOrder
-
@Documented @Retention(RUNTIME) @Target(FIELD) public @interface GridToStringOrder
Attach this annotation to a field to provide its order intoString()output. By default the order the order is the same as the order of declaration in the class. Fields with smaller order value will come before intoString()output. If order is not specified theInteger.MAX_VALUEwill be used.
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description intvalueNumeric order value.
-