Enum Class ImageType

java.lang.Object
java.lang.Enum<ImageType>
com.hp.lft.sdk.web.ImageType
All Implemented Interfaces:
Serializable, Comparable<ImageType>, java.lang.constant.Constable

public enum ImageType extends Enum<ImageType>
Supported image types.
  • Enum Constant Details

    • NORMAL

      public static final ImageType NORMAL
      A normal image without any special meaning.
    • BUTTON

      public static final ImageType BUTTON
      An image contained in an input element (input type="image").
    • CLIENT_IMAGE_MAP

      public static final ImageType CLIENT_IMAGE_MAP
      An image that is part of a client-side image map (relevant for area objects).
    • CLIENT_AND_SERVER_IMAGE_MAP

      public static final ImageType CLIENT_AND_SERVER_IMAGE_MAP
      An image that is both a client image map and a server image map.
    • SERVER_IMAGE_MAP

      public static final ImageType SERVER_IMAGE_MAP
      An image defined as a server-side image map.
  • Method Details

    • values

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

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