Enum Class NinePatch.Mode

java.lang.Object
java.lang.Enum<NinePatch.Mode>
io.github.cottonmc.cotton.gui.client.NinePatch.Mode
All Implemented Interfaces:
Serializable, Comparable<NinePatch.Mode>, Constable
Enclosing class:
NinePatch

public static enum NinePatch.Mode extends Enum<NinePatch.Mode>
The mode of a nine-patch painter defines how it fills the area between the corners.
  • Enum Constant Details

    • STRETCHING

      public static final NinePatch.Mode STRETCHING
      The texture is stretched to fill the edges and the center. This is the default mode.
    • TILING

      public static final NinePatch.Mode TILING
      The texture is tiled to fill the edges and the center.
  • Method Details

    • values

      public static NinePatch.Mode[] 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 NinePatch.Mode 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
    • fromString

      @Nullable public static @Nullable NinePatch.Mode fromString(String str)
      Deserializes a nine-patch mode from a string.
      Parameters:
      str - the mode string
      Returns:
      the mode, or null if the string is invalid
      Since:
      4.0.0