Enum Class EnumMap.Type

java.lang.Object
java.lang.Enum<EnumMap.Type>
org.miaixz.bus.core.lang.EnumMap.Type
All Implemented Interfaces:
Serializable, Comparable<EnumMap.Type>, Constable
Enclosing interface:
EnumMap<E extends EnumMap<E>>

public static enum EnumMap.Type extends Enum<EnumMap.Type>
图片缩略类型
  • Enum Constant Details

    • DEFAULT

      public static final EnumMap.Type DEFAULT
      默认
    • FAST

      public static final EnumMap.Type FAST
      快速
    • SMOOTH

      public static final EnumMap.Type SMOOTH
      平滑
    • REPLICATE

      public static final EnumMap.Type REPLICATE
      使用 ReplicateScaleFilter 类中包含的图像缩放算法
    • AREA_AVERAGING

      public static final EnumMap.Type AREA_AVERAGING
      Area Averaging算法
  • Method Details

    • values

      public static EnumMap.Type[] 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 EnumMap.Type 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