Package it.unimi.dsi.webgraph.algo
Enum SumSweepDirectedDiameterRadius.OutputLevel
java.lang.Object
java.lang.Enum<SumSweepDirectedDiameterRadius.OutputLevel>
it.unimi.dsi.webgraph.algo.SumSweepDirectedDiameterRadius.OutputLevel
- All Implemented Interfaces:
Serializable
,Comparable<SumSweepDirectedDiameterRadius.OutputLevel>
,java.lang.constant.Constable
- Enclosing class:
- SumSweepDirectedDiameterRadius
public static enum SumSweepDirectedDiameterRadius.OutputLevel extends Enum<SumSweepDirectedDiameterRadius.OutputLevel>
The type of output requested: radius, diameter, radius and diameter, all
forward eccentricities, or all (forward and backward) eccentricities.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL
Computes the radius, the diameter, and all the (forward and backward) eccentricities.ALL_FORWARD
Computes the radius, the diameter, and all the forward eccentricities.DIAMETER
Computes only the diameter of the graph.RADIUS
Computes only the radius of the graph.RADIUS_DIAMETER
Computes both radius and diameter. -
Method Summary
Modifier and Type Method Description static SumSweepDirectedDiameterRadius.OutputLevel
valueOf(String name)
Returns the enum constant of this type with the specified name.static SumSweepDirectedDiameterRadius.OutputLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
RADIUS
Computes only the radius of the graph. -
DIAMETER
Computes only the diameter of the graph. -
RADIUS_DIAMETER
Computes both radius and diameter. -
ALL_FORWARD
Computes the radius, the diameter, and all the forward eccentricities. -
ALL
Computes the radius, the diameter, and all the (forward and backward) eccentricities.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-