Enum ModularityAlgorithm
java.lang.Object
java.lang.Enum<ModularityAlgorithm>
de.uni_mannheim.informatik.dws.melt.matching_jena_matchers.multisource.clustering.ModularityAlgorithm
- All Implemented Interfaces:
Serializable
,Comparable<ModularityAlgorithm>
,java.lang.constant.Constable
Algorithm for modularity optimization used in
ComputeErrDegree
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionoriginal Louvain algorithmLouvain algorithm with multilevel refinementSLM algorithm -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ModularityAlgorithm
Returns the enum constant of this type with the specified name.static ModularityAlgorithm[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
LOUVRAIN
original Louvain algorithm -
LOUVRAIN_MULTILEVEL
Louvain algorithm with multilevel refinement -
SLM
SLM algorithm
-
-
Constructor Details
-
ModularityAlgorithm
private ModularityAlgorithm()
-
-
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
-