Enum Class ResourceFile

java.lang.Object
java.lang.Enum<ResourceFile>
com.serinity.accesscontrol.flag.ResourceFile
All Implemented Interfaces:
Serializable, Comparable<ResourceFile>, Constable

public enum ResourceFile extends Enum<ResourceFile>
`access-control` filename manager (enum)

Contain all the access-control package fxml filenames

Since:
2026-01-28
// Example usage
final static String SIGNIN_FILENAME = ResourceFile.SIGNIN.getFileName();
ResourceFile.java
Version:
1.0
Author:
@ZouariOmar (zouariomar20@gmail.com)
  • Enum Constant Details

    • ROOT_FXML

      public static final ResourceFile ROOT_FXML
      Root layout FXML.
    • LOGIN_FXML

      public static final ResourceFile LOGIN_FXML
      Login page FXML.
    • USER_HOME_FXML

      public static final ResourceFile USER_HOME_FXML
      User home page FXML.
    • USER_DAHBOARD_FXML

      public static final ResourceFile USER_DAHBOARD_FXML
      User dashboard FXML.
    • ADMIN_DASHBOARD_FXML

      public static final ResourceFile ADMIN_DASHBOARD_FXML
      Admin dashboard FXML.
    • ADMIN_USERS_MANAGMENT_FXML

      public static final ResourceFile ADMIN_USERS_MANAGMENT_FXML
      Admin user management FXML.
    • RESET_PASSWORD_FXML

      public static final ResourceFile RESET_PASSWORD_FXML
      Reset password FXML.
    • CAMERA_DESKTOP_FXML

      public static final ResourceFile CAMERA_DESKTOP_FXML
      Camera desktop FXML.
    • MOOD_HOME_FXML

      public static final ResourceFile MOOD_HOME_FXML
      Mood home FXML.
    • MOOD_ADMIN_MANAGMENT

      public static final ResourceFile MOOD_ADMIN_MANAGMENT
      Admin mood management FXML.
    • FORUM_HOME_FXML

      public static final ResourceFile FORUM_HOME_FXML
      Forum home FXML.
    • FORUM_ADMIN_FXML

      public static final ResourceFile FORUM_ADMIN_FXML
      Admin forum FXML.
    • LOGIN_SIDE_HTML

      public static final ResourceFile LOGIN_SIDE_HTML
      Login side HTML page.
    • FORGET_PASSWORD_HTML

      public static final ResourceFile FORGET_PASSWORD_HTML
      Forgot-password HTML page.
    • ANTELOPEV2_SCRFD_10G_BNKPS_ONNX

      public static final ResourceFile ANTELOPEV2_SCRFD_10G_BNKPS_ONNX
      SCRFD detection model.
    • ANTELOPEV2_GLINTR100_ONNX

      public static final ResourceFile ANTELOPEV2_GLINTR100_ONNX
      ArcFace recognition model.
    • USER_DEFAUL_PROFILE_PNG

      public static final ResourceFile USER_DEFAUL_PROFILE_PNG
      Default user profile image.
  • Method Details

    • values

      public static ResourceFile[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ResourceFile valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getFileName

      public final String getFileName()
      Returns the resource path.
      Returns:
      classpath resource path
    • toString

      public String toString()
      Overrides:
      toString in class Enum<ResourceFile>