Enum Class Wildcard

java.lang.Object
java.lang.Enum<Wildcard>
org.refcodes.data.Wildcard
All Implemented Interfaces:
Serializable, Comparable<Wildcard>, Constable, org.refcodes.mixin.ValueAccessor<String>

public enum Wildcard extends Enum<Wildcard> implements org.refcodes.mixin.ValueAccessor<String>
Commonly used characters needful for analyzing, parsing or truncating texts.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>

    Nested classes/interfaces inherited from interface org.refcodes.mixin.ValueAccessor

    org.refcodes.mixin.ValueAccessor.ValueBuilder<V extends Object,B extends org.refcodes.mixin.ValueAccessor.ValueBuilder<V,B>>, org.refcodes.mixin.ValueAccessor.ValueMutator<V extends Object>, org.refcodes.mixin.ValueAccessor.ValueProperty<V extends Object>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
     
     
     
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static Wildcard
    Returns the enum constant of this class with the specified name.
    static Wildcard[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface org.refcodes.mixin.ValueAccessor

    getValueOr
  • Enum Constant Details

    • CHAR

      public static final Wildcard CHAR
    • FILE

      public static final Wildcard FILE
    • PATH

      public static final Wildcard PATH
    • QUERY

      public static final Wildcard QUERY
  • Method Details

    • values

      public static Wildcard[] 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 Wildcard 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
    • getValue

      public String getValue()
      Specified by:
      getValue in interface org.refcodes.mixin.ValueAccessor<String>