de.cesr.more.measures.network
Enum MNetworkMeasureCategory

java.lang.Object
  extended by java.lang.Enum<MNetworkMeasureCategory>
      extended by de.cesr.more.measures.network.MNetworkMeasureCategory
All Implemented Interfaces:
MoreMeasureCategory, Serializable, Comparable<MNetworkMeasureCategory>

public enum MNetworkMeasureCategory
extends Enum<MNetworkMeasureCategory>
implements MoreMeasureCategory

MORe

Date:
28.10.2010

Enum Constant Summary
NETWORK_AUTHORITY
           
NETWORK_CENTRALITY
           
NETWORK_CENTRALITY_NORM
           
NETWORK_CENTRALITY_STD
           
NETWORK_CLUSTERING
           
NETWORK_MISC
           
NETWORK_MODULARITY
           
NETWORK_PRESTIGE
           
NETWORK_STATISTICS
           
NOT_DEFINED
           
 
Method Summary
 boolean equals(MNetworkMeasureCategory category)
          Test for equality by the category's description
 String toString()
          Returns the description of this MeasureCategory
static MNetworkMeasureCategory valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MNetworkMeasureCategory[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NOT_DEFINED

public static final MNetworkMeasureCategory NOT_DEFINED

NETWORK_CLUSTERING

public static final MNetworkMeasureCategory NETWORK_CLUSTERING

NETWORK_CENTRALITY

public static final MNetworkMeasureCategory NETWORK_CENTRALITY

NETWORK_CENTRALITY_NORM

public static final MNetworkMeasureCategory NETWORK_CENTRALITY_NORM

NETWORK_CENTRALITY_STD

public static final MNetworkMeasureCategory NETWORK_CENTRALITY_STD

NETWORK_MODULARITY

public static final MNetworkMeasureCategory NETWORK_MODULARITY

NETWORK_PRESTIGE

public static final MNetworkMeasureCategory NETWORK_PRESTIGE

NETWORK_AUTHORITY

public static final MNetworkMeasureCategory NETWORK_AUTHORITY

NETWORK_STATISTICS

public static final MNetworkMeasureCategory NETWORK_STATISTICS

NETWORK_MISC

public static final MNetworkMeasureCategory NETWORK_MISC
Method Detail

values

public static MNetworkMeasureCategory[] 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 (MNetworkMeasureCategory c : MNetworkMeasureCategory.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MNetworkMeasureCategory valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

toString

public String toString()
Returns the description of this MeasureCategory

Overrides:
toString in class Enum<MNetworkMeasureCategory>
See Also:
Object.toString()

equals

public boolean equals(MNetworkMeasureCategory category)
Test for equality by the category's description

Parameters:
category -
Returns:
true if the categories have the same description
Date:
15.08.2008