Enum Coder

java.lang.Object
java.lang.Enum<Coder>
com.jsql.util.bruter.Coder
All Implemented Interfaces:
Serializable, Comparable<Coder>, java.lang.constant.Constable

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

    • MD2

      public static final Coder MD2
    • MD4

      public static final Coder MD4
    • MD5

      public static final Coder MD5
    • SHA1

      public static final Coder SHA1
    • SHA256

      public static final Coder SHA256
    • SHA384

      public static final Coder SHA384
    • SHA512

      public static final Coder SHA512
    • MYSQL

      public static final Coder MYSQL
    • ADLER32

      public static final Coder ADLER32
    • CRC16

      public static final Coder CRC16
    • CRC32

      public static final Coder CRC32
    • CRC64

      public static final Coder CRC64
    • HEX

      public static final Coder HEX
    • HEX_ZIP

      public static final Coder HEX_ZIP
    • BASE64_ZIP

      public static final Coder BASE64_ZIP
    • BASE64

      public static final Coder BASE64
    • BASE32

      public static final Coder BASE32
    • BASE58

      public static final Coder BASE58
    • BASE16

      public static final Coder BASE16
    • HTML

      public static final Coder HTML
    • HTML_DECIMAL

      public static final Coder HTML_DECIMAL
    • URL

      public static final Coder URL
    • UNICODE

      public static final Coder UNICODE
  • Field Details

    • label

      public final String label
  • Method Details

    • values

      public static Coder[] 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 Coder 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Coder>