Enumeration MappingStatus
MappingStatus represents the outcome of a mapping operation on a field.
@Retention(RetentionPolicy.CLASS)
public @interface EnumMappingStatus {
/** The field has no mapping specified. */
public static final int MS_NONE = 0;
/** Find a mapping for the field value. */
public static final int MS_SUCCEEDED = 1;
/** Failed to find a mapping for the field value. */
public static final int MS_FAILED = 2;
}