Package it.unimi.dsi.webgraph.algo
Enum SumSweepUndirectedDiameterRadius.OutputLevel
- java.lang.Object
-
- java.lang.Enum<SumSweepUndirectedDiameterRadius.OutputLevel>
-
- it.unimi.dsi.webgraph.algo.SumSweepUndirectedDiameterRadius.OutputLevel
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SumSweepUndirectedDiameterRadius.OutputLevel>
- Enclosing class:
- SumSweepUndirectedDiameterRadius
public static enum SumSweepUndirectedDiameterRadius.OutputLevel extends java.lang.Enum<SumSweepUndirectedDiameterRadius.OutputLevel>
The type of output requested: radius, diameter, radius and diameter, or all eccentricities.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL
Computes the radius, the diameter, and all the eccentricities.DIAMETER
Computes only the diameter of the graph.RADIUS
Computes only the radius of the graph.RADIUSDIAMETER
Computes both radius and diameter.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SumSweepUndirectedDiameterRadius.OutputLevel
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SumSweepUndirectedDiameterRadius.OutputLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RADIUS
public static final SumSweepUndirectedDiameterRadius.OutputLevel RADIUS
Computes only the radius of the graph.
-
DIAMETER
public static final SumSweepUndirectedDiameterRadius.OutputLevel DIAMETER
Computes only the diameter of the graph.
-
RADIUSDIAMETER
public static final SumSweepUndirectedDiameterRadius.OutputLevel RADIUSDIAMETER
Computes both radius and diameter.
-
ALL
public static final SumSweepUndirectedDiameterRadius.OutputLevel ALL
Computes the radius, the diameter, and all the eccentricities.
-
-
Method Detail
-
values
public static SumSweepUndirectedDiameterRadius.OutputLevel[] 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 (SumSweepUndirectedDiameterRadius.OutputLevel c : SumSweepUndirectedDiameterRadius.OutputLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SumSweepUndirectedDiameterRadius.OutputLevel 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 namejava.lang.NullPointerException
- if the argument is null
-
-