-
Notifications
You must be signed in to change notification settings - Fork 0
Reference Name
Mr_qsdf edited this page Apr 7, 2025
·
1 revision
To easily retrieve models, it is recommended to create an enum containing the different model reference names:
public enum ModelReference {
MODEL_NAME_1("model name 1"),
MODEL_NAME_2("model name 2");
private final String name;
ModelReference(String name){
this.name = name;
}
public String getName(){
return this.name;
}
}