java.lang.Object
java.lang.Enum<EdgeMode>
com.github.weisj.jsvg.attributes.filter.EdgeMode
All Implemented Interfaces:
Serializable, Comparable<EdgeMode>, java.lang.constant.Constable

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

    • Duplicate

      public static final EdgeMode Duplicate
    • Wrap

      public static final EdgeMode Wrap
    • None

      public static final EdgeMode None
  • Method Details

    • values

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

      public static EdgeMode valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • convolve

      public abstract ImageProducer convolve(@NotNull @NotNull RenderContext context, @NotNull @NotNull FilterContext filterContext, @NotNull @NotNull ImageProducer producer, @NotNull @NotNull EdgeMode.ConvolveOperation convolveOperation)