me.dhf.dict.Selects Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dhf-dict Show documentation
Show all versions of dhf-dict Show documentation
Generate global dictionary JSON file and map for calling in the previous section or view
The newest version!
package me.dhf.dict;
public class Selects {
private Selects() {
super();
}
public static SelectBuilder custom() {
return SelectBuilder.create();
}
public static void createDefault() {
SelectBuilder.create().build();
}
public static void createSystem() {
SelectBuilder.create().useSystemProperties().build();
}
}