public enum BedFormat extends Enum<BedFormat>
| Enum Constant and Description |
|---|
BED12
BED12 format, chrom start end name score strand thickStart thickEnd itemRgb blockCount blockSizes blockStarts.
|
BED3
BED3 format, chrom start end.
|
BED4
BED4 format, chrom start end name.
|
BED5
BED5 format, chrom start end name score.
|
BED6
BED6 format, chrom start end name score strand.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isAtLeastBED12()
Return true if this BED format is at least BED12.
|
boolean |
isAtLeastBED3()
Return true if this BED format is at least BED3.
|
boolean |
isAtLeastBED4()
Return true if this BED format is at least BED4.
|
boolean |
isAtLeastBED5()
Return true if this BED format is at least BED5.
|
boolean |
isAtLeastBED6()
Return true if this BED format is at least BED6.
|
boolean |
isBED12()
Return true if this BED format is BED12.
|
boolean |
isBED3()
Return true if this BED format is BED3.
|
boolean |
isBED4()
Return true if this BED format is BED4.
|
boolean |
isBED5()
Return true if this BED format is BED5.
|
boolean |
isBED6()
Return true if this BED format is BED6.
|
static BedFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BedFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BedFormat BED3
public static final BedFormat BED4
public static final BedFormat BED5
public static final BedFormat BED6
public static final BedFormat BED12
public static BedFormat[] values()
for (BedFormat c : BedFormat.values()) System.out.println(c);
public static BedFormat valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic boolean isBED3()
public boolean isAtLeastBED3()
public boolean isBED4()
public boolean isAtLeastBED4()
public boolean isBED5()
public boolean isAtLeastBED5()
public boolean isBED6()
public boolean isAtLeastBED6()
public boolean isBED12()
public boolean isAtLeastBED12()
Copyright (c) 2013-2022 held jointly by the individual authors. Licensed under the GNU Lesser General Public License (LGPL).