Enum EntityType

java.lang.Object
java.lang.Enum<EntityType>
de.xima.fc.model.entity.EntityType
All Implemented Interfaces:
Serializable, Comparable<EntityType>

public enum EntityType extends Enum<EntityType> implements Serializable
Enumeration of formcycle entities for referencing purposes.
Since:
21.11.25
Author:
Norman Lorenz
  • Enum Constant Details

    • FORM_RESOURCE

      public static final EntityType FORM_RESOURCE
    • CLIENT_RESOURCE

      public static final EntityType CLIENT_RESOURCE
    • INBOX

      public static final EntityType INBOX
    • USER_GROUP

      public static final EntityType USER_GROUP
    • CLIENT_COUNTER

      public static final EntityType CLIENT_COUNTER
    • CLIENT_FORM_THEME

      public static final EntityType CLIENT_FORM_THEME
    • DATA_SOURCE

      public static final EntityType DATA_SOURCE
    • APPOINTMENT_TEMPLATE

      public static final EntityType APPOINTMENT_TEMPLATE
    • PROMPT_CONNECTION

      public static final EntityType PROMPT_CONNECTION
    • PROMPT_QUERY

      public static final EntityType PROMPT_QUERY
    • TEMPLATE

      public static final EntityType TEMPLATE
    • WORKFLOW_STATE

      public static final EntityType WORKFLOW_STATE
    • WEB_DAV_CONNECTION

      public static final EntityType WEB_DAV_CONNECTION
    • LDAP_CONNECTION

      public static final EntityType LDAP_CONNECTION
    • LDAP_QUERY

      public static final EntityType LDAP_QUERY
    • DIRECT_CLIENT_AUTHORIZATION

      public static final EntityType DIRECT_CLIENT_AUTHORIZATION
    • DATABASE_CONNECTION

      public static final EntityType DATABASE_CONNECTION
  • Method Details

    • values

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

      public static EntityType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • ofTypeNameOrNull

      public static EntityType ofTypeNameOrNull(String typeName)
      Gets the EntityType for the given type name, or null if not found.
      Parameters:
      typeName - The type name.
      Returns:
      The entity type, or null if not found.
    • ofTypeName

      public static Optional<EntityType> ofTypeName(String typeName)
      Gets the EntityType for the given type name.
      Parameters:
      typeName - The type name.
      Returns:
      An optional containing the entity type, or an empty optional if not found.
    • typeName

      public String typeName()
      Gets the string identifying this type.
      Returns:
      The type string.