Enum DslSchema

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<DslSchema>

    public enum DslSchema
    extends java.lang.Enum<DslSchema>
    List of dsl schemas
    • Enum Constant Detail

      • SELECT_MULTIPLE

        public static final DslSchema SELECT_MULTIPLE
      • SELECT_SINGLE

        public static final DslSchema SELECT_SINGLE
      • BATCH_PROCESSING

        public static final DslSchema BATCH_PROCESSING
      • GET_BY_ID

        public static final DslSchema GET_BY_ID
      • BULK_UPDATE

        public static final DslSchema BULK_UPDATE
      • UPDATE_BY_ID

        public static final DslSchema UPDATE_BY_ID
      • MASS_UPDATE

        public static final DslSchema MASS_UPDATE
      • RECLASSIFICATION_QUERY

        public static final DslSchema RECLASSIFICATION_QUERY
    • Method Detail

      • values

        public static DslSchema[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (DslSchema c : DslSchema.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DslSchema valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getFilename

        public java.lang.String getFilename()