Enum FilterType

  • All Implemented Interfaces:
    java.io.Serializable , kotlin.Comparable

    
    public enum FilterType
    extends Enum<FilterType>
                        

    Filter-types by which to filter entries when walking through the files in a directory.

    Author:

    Griefed

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      CONTAINS

      Whether the string to check contains the given filter.

      ENDS_WITH

      Whether the string to check ends with the given filter.

      STARTS_WITH

      Whether the string to check starts with the given filter.

    • Constructor Detail

    • Method Detail

      • values

         final Array<FilterType> values()

        Returns an array containing the constants of this enum type, in the order they're declared.

        This method may be used to iterate over the constants.

      • valueOf

         final FilterType valueOf(String value)

        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.)