Package cli

Enum Class CLISequence.Split

All Implemented Interfaces:
Serializable, Comparable<CLISequence.Split>, Constable
Enclosing class:
CLISequence

public static enum CLISequence.Split extends Enum<CLISequence.Split>
The mode to split output files by.
  • Enum Constant Details

    • FEATURE

      public static final CLISequence.Split FEATURE
      Split output files by feature/genomic range.
    • SAMPLE

      public static final CLISequence.Split SAMPLE
      Split output files by sample (or sequence type) identifier.
    • NONE

      public static final CLISequence.Split NONE
      Do not split output files.
    • BOTH

      public static final CLISequence.Split BOTH
      Split output files by both feature/genomic range and sample (or sequence type) identifier.
  • Method Details

    • values

      public static CLISequence.Split[] 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 CLISequence.Split 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