Enum LocalizedStrings

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

    public enum LocalizedStrings
    extends java.lang.Enum<LocalizedStrings>
    • Enum Constant Detail

      • SHOW_SIDEBAR_TOOLTIP

        public static final LocalizedStrings SHOW_SIDEBAR_TOOLTIP
      • SIDEBAR_CONTAINER_LABEL

        public static final LocalizedStrings SIDEBAR_CONTAINER_LABEL
      • CURRENT_EDITOR_CAN_NOT_BE_CHECKED_MESSAGE

        public static final LocalizedStrings CURRENT_EDITOR_CAN_NOT_BE_CHECKED_MESSAGE
      • NO_CHECK_CONTENT_AVAILABLE_MESSAGE

        public static final LocalizedStrings NO_CHECK_CONTENT_AVAILABLE_MESSAGE
      • DITA_CAN_NOT_CHECK_UNRESOLVED_FILES_TITLE

        public static final LocalizedStrings DITA_CAN_NOT_CHECK_UNRESOLVED_FILES_TITLE
      • DITA_CAN_NOT_CHECK_UNRESOLVED_FILES_BODY

        public static final LocalizedStrings DITA_CAN_NOT_CHECK_UNRESOLVED_FILES_BODY
    • Method Detail

      • values

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

        public static LocalizedStrings 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