Annotation Type Nationalized


  • @Target({METHOD,FIELD})
    @Retention(RUNTIME)
    public @interface Nationalized
    Used to indicate that the annotated character data should be stored with nationalization support. The annotation's affect depends on Dialect.getNationalizationSupport() Some databases support storing nationalized data in their "normal" character data types (CHAR, VARCHAR, LONGVARCHAR, CLOB). In such cases this annotation is effectively ignored. See NationalizationSupport.IMPLICIT Some databases support storing nationalized data only through the specialized, standard SQL variants (NCHAR, NVARCHAR, LONGNVARCHAR, NCLOB). In such cases this annotation will adjust the JDBC type code to the specialized variant. See NationalizationSupport.EXPLICIT