Enum GffType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<GffType>

    public enum GffType
    extends java.lang.Enum<GffType>
    • Enum Constant Detail

      • GENE

        public static final GffType GENE
      • TRANSCRIPT

        public static final GffType TRANSCRIPT
      • EXON

        public static final GffType EXON
      • CDS

        public static final GffType CDS
      • START_CODON

        public static final GffType START_CODON
      • STOP_CODON

        public static final GffType STOP_CODON
      • UTR5

        public static final GffType UTR5
      • UTR3

        public static final GffType UTR3
      • INTRON_CONSERVED

        public static final GffType INTRON_CONSERVED
      • INTERGENIC_CONSERVED

        public static final GffType INTERGENIC_CONSERVED
      • UNKNOWN

        public static final GffType UNKNOWN
    • Method Detail

      • values

        public static GffType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (GffType c : GffType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static GffType valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • parse

        public static GffType parse​(java.lang.String str)