Enum CmsReportFormatType

    • Method Detail

      • values

        public static CmsReportFormatType[] 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 (CmsReportFormatType c : CmsReportFormatType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CmsReportFormatType 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
      • byId

        public static CmsReportFormatType byId​(int id)
        Gets the format enum by its id.

        Parameters:
        id - the format id
        Returns:
        the format enum
      • byName

        public static CmsReportFormatType byName​(java.lang.String name)
        Gets the format enum by its format naem.

        Parameters:
        name - the format name
        Returns:
        the format enum value
      • getFormatId

        public int getFormatId()
        Gets the format id.

        Returns:
        the format id
      • getFormatName

        public java.lang.String getFormatName()
        Gets the format name.

        Returns:
        the format name