Enum ContentTypeEnum

    • Method Detail

      • values

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

        public static ContentTypeEnum 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
      • getRepresentation

        public String getRepresentation()
      • hasRepresentation

        public boolean hasRepresentation​(String key)
      • getType

        public Class<? extends com.atlassian.core.bean.EntityObject> getType()
      • getTypeName

        public String getTypeName()
      • getByRepresentation

        public static ContentTypeEnum getByRepresentation​(String representation)
        Parameters:
        representation - the String representation of the enum. e.g. Page.CONTENT_TYPE
        Returns:
        the ContentTypeEnum for the supplied String. null is returned if the parameter does not map to a ContentTypeEnum.
      • getByClassName

        public static ContentTypeEnum getByClassName​(String className)
        Parameters:
        className - fully qualified class name e.g. "com.atlassian.confluence.pages.Page"
        Returns:
        the ContentTypeEnum for the supplied class name. null if none found.