@Retention(value=RUNTIME)
@Target(value={FIELD,METHOD})
public @interface StringTime
The time is in the format HH:mm, like "13:46" for example. The data type is String with a length of 5. Applies to properties.
Example:
@StringTime @Column(length=5) private String startTime;It's synonymous of @Stereotype("TIME").