public enum CycleFinderAlgorithm extends Enum<CycleFinderAlgorithm>
Enum Constant and Description |
---|
PatonCycleBasis |
QueueBFSCycleBasis |
StackBFSCycleBasis |
Modifier and Type | Method and Description |
---|---|
Set<List<FilamentEdge>> |
findCycles(Filaments3DGraphData graph) |
static CycleFinderAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CycleFinderAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CycleFinderAlgorithm PatonCycleBasis
public static final CycleFinderAlgorithm StackBFSCycleBasis
public static final CycleFinderAlgorithm QueueBFSCycleBasis
public static CycleFinderAlgorithm[] values()
for (CycleFinderAlgorithm c : CycleFinderAlgorithm.values()) System.out.println(c);
public static CycleFinderAlgorithm 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 Set<List<FilamentEdge>> findCycles(Filaments3DGraphData graph)
Copyright © 2020–2025 Leibniz Institute for Natural Product Research and Infection Biology - Hans Knöll Institute (HKI). All rights reserved.