FFM-Friend_Face_Matching/src/main/java/dev/mateuszkowalczyk/ffm/view/workspace/elements/ElementsEnum.java

19 lines
551 B
Java
Raw Normal View History

2020-01-27 21:29:01 +01:00
package dev.mateuszkowalczyk.ffm.view.workspace.elements;
public enum ElementsEnum {
2020-01-28 22:18:59 +01:00
ImagesContainer("templates/workspace/elements/image_container.fxml"),
ImagesContainerForPerson("templates/workspace/elements/image_container.fxml"),
2020-01-30 23:50:14 +01:00
PeopleContainer("templates/workspace/elements/people_container.fxml"),
PersonFaceContainer("templates/workspace/elements/face_container.fxml");
2020-01-27 21:29:01 +01:00
private String path;
ElementsEnum(String path) {
this.path = path;
}
public String getPath() {
return this.path;
}
}