Enum Class AvatarSize

java.lang.Object
java.lang.Enum<AvatarSize>
com.riadalabs.jira.plugins.insight.services.model.AvatarSize
All Implemented Interfaces:
Serializable, Comparable<AvatarSize>, Constable

public enum AvatarSize extends Enum<AvatarSize>
  • Enum Constant Details

    • WIDTH_16

      public static final AvatarSize WIDTH_16
    • WIDTH_48

      public static final AvatarSize WIDTH_48
    • WIDTH_72

      public static final AvatarSize WIDTH_72
    • WIDTH_144

      public static final AvatarSize WIDTH_144
    • WIDTH_288

      public static final AvatarSize WIDTH_288
  • Method Details

    • values

      public static AvatarSize[] 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 AvatarSize 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
    • getWidth

      public int getWidth()
    • valueOf

      public static Optional<AvatarSize> valueOf(int width)
      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:
      width - 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
    • allWidths

      public static Integer[] allWidths()