Skip to content

gabrie-allaigre/rtext

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rtext

<dependency>
    <groupId>com.talanlabs</groupId>
    <artifactId>rtext</artifactId>
    <version>1.1.0</version>
</dependency>

Convert a text to object

RtextConfigurationBuilder builder = RtextConfigurationBuilder.newBuilder();
Rtext rtext = new Rtext(builder.build());

Long l = rtext.fromText("12", Long.class);
LocalDate localDate = rtext.fromText("1980-02-07", LocalDate.class);