@Retention(value=RUNTIME) @Target(value={ANNOTATION_TYPE,FIELD,PARAMETER}) public @interface LongConversion
This annotation can be applied to fields, parameters, or other annotations to define
a custom conversion strategy using a specific LongConverter implementation.
The referenced converter annotation should either have a static final instance named
`INSTANCE` or should be a LongConverter
LongConverterpublic abstract Class<?> value
The LongConverter class to be used for conversion.
The class specified should either have a static final field named INSTANCE,
or a constructor that takes a single string parameter for initialization.
Copyright © 2023. All rights reserved.