com.dslplatform.json
Annotation Type JsonValue


@Target(value={FIELD,METHOD})
@Retention(value=CLASS)
public @interface JsonValue

Specify json value source used for serialization/deserialization. Can be used on field or getter.

     enum MyEnum {
         FIRST("a"),
         SECOND("b");

        @JsonValue
         public final String value;

         MyEnum(String value) {
             this.value = value;
         }
     }
 



Copyright © 2019. All rights reserved.