format.bind.annotation.FormatField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jformatb-api Show documentation
Show all versions of jformatb-api Show documentation
Turn formatted text to java bean and vice versa
/*
* Copyright 2024 jFormat-B
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package format.bind.annotation;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import java.text.DateFormat;
import java.text.DecimalFormat;
import java.util.Locale;
/**
* Maps a JavaBean property to a text format field.
*
* Usage
*
* The {@code FormatField} annotation can be used with the following program elements:
*
*
* - a JavaBean property
* - non static and non transient field
*
*
* @author Yannick Ebongue
*
*/
@Documented
@Retention(RUNTIME)
@Target({ FIELD, METHOD })
public @interface FormatField {
/**
* (Optional) The name of the text format field.
*
*
* If the value is empty (the default value), the text format field name is derived
* from the JavaBean property name.
*
*
* @return The name of the text format field.
*/
String name() default "";
/**
* (Optional) The type of the text format field.
*
* @return The type of the text format field.
*/
Type type() default Type.DEFAULT;
/**
* (Optional) The length of the text format field.
*
* @return The length of the text format field.
*/
int length() default 0;
/**
* (Optional) The scale for numeric text format field.
*
* @return The scale of the numeric text format field.
*/
int scale() default 0;
/**
* (Optional) The format of the text format field.
*
* @return The format of the text format field.
*/
String format() default "";
/**
* (Optional) The {@link Locale} to be used with the {@link #format()} if specified.
*
*
* If the value is empty (the default value), the {@link Locale#getDefault()} will be
* used with the {@code format} of the text format field.
*
*
*
* The specified {@link Locale} value must be a valid language tag.
*
*
* @return The {@link Locale} of the text format field.
*
* @see DateFormat
* @see DecimalFormat
* @see Locale
* @see Locale#forLanguageTag(String)
*/
String locale() default "";
/**
* (Optional) The placeholder of the text format field.
*
* @return The placeholder of the text format field.
*/
String placeholder() default "";
/**
* (Optional) Whether the text format field is read only.
*
*
* Useful when the text format field value cannot be set on the target Java
* object but can be formatted to text. This must be used with property access
* strategy and usually for a computed field property.
*
*
* @return {@code true} if text format field is read only; otherwise returns
* {@code false} (default value).
*
* @see FormatAccess
*/
boolean readOnly() default false;
/**
* Used in {@link FormatField#type()} to specify the type of the
* text format field.
*/
enum Type {
/** Inferred from property signature. */
DEFAULT,
/** Alphanumeric text format field. */
ALPHANUMERIC,
/** Numeric text format field. */
NUMERIC
}
}