org.graphstream.algorithm.generator
Enum PointsOfInterestGenerator.Parameter

java.lang.Object
  extended by java.lang.Enum<PointsOfInterestGenerator.Parameter>
      extended by org.graphstream.algorithm.generator.PointsOfInterestGenerator.Parameter
All Implemented Interfaces:
Serializable, Comparable<PointsOfInterestGenerator.Parameter>
Enclosing class:
PointsOfInterestGenerator

public static enum PointsOfInterestGenerator.Parameter
extends Enum<PointsOfInterestGenerator.Parameter>


Enum Constant Summary
ADD_PEOPLE_PROBABILITY
           
ADD_POINT_OF_INTEREST_PROBABILITY
           
AVERAGE_POINTS_OF_INTEREST_COUNT
           
DEL_PEOPLE_PROBABILITY
           
DEL_POINT_OF_INTEREST_PROBABILITY
           
HAVE_INTEREST_PROBABILITY
           
INITIAL_PEOPLE_COUNT
           
INITIAL_POINT_OF_INTEREST_COUNT
           
LINK_PROBABILITY
           
LINKS_NEEDED_TO_CREATE_EDGE
           
LOST_INTEREST_PROBABILITY
           
 
Method Summary
static PointsOfInterestGenerator.Parameter valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PointsOfInterestGenerator.Parameter[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INITIAL_PEOPLE_COUNT

public static final PointsOfInterestGenerator.Parameter INITIAL_PEOPLE_COUNT

ADD_PEOPLE_PROBABILITY

public static final PointsOfInterestGenerator.Parameter ADD_PEOPLE_PROBABILITY

DEL_PEOPLE_PROBABILITY

public static final PointsOfInterestGenerator.Parameter DEL_PEOPLE_PROBABILITY

INITIAL_POINT_OF_INTEREST_COUNT

public static final PointsOfInterestGenerator.Parameter INITIAL_POINT_OF_INTEREST_COUNT

AVERAGE_POINTS_OF_INTEREST_COUNT

public static final PointsOfInterestGenerator.Parameter AVERAGE_POINTS_OF_INTEREST_COUNT

ADD_POINT_OF_INTEREST_PROBABILITY

public static final PointsOfInterestGenerator.Parameter ADD_POINT_OF_INTEREST_PROBABILITY

DEL_POINT_OF_INTEREST_PROBABILITY

public static final PointsOfInterestGenerator.Parameter DEL_POINT_OF_INTEREST_PROBABILITY

HAVE_INTEREST_PROBABILITY

public static final PointsOfInterestGenerator.Parameter HAVE_INTEREST_PROBABILITY

LOST_INTEREST_PROBABILITY

public static final PointsOfInterestGenerator.Parameter LOST_INTEREST_PROBABILITY

LINKS_NEEDED_TO_CREATE_EDGE

public static final PointsOfInterestGenerator.Parameter LINKS_NEEDED_TO_CREATE_EDGE

LINK_PROBABILITY

public static final PointsOfInterestGenerator.Parameter LINK_PROBABILITY
Method Detail

values

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

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

valueOf

public static PointsOfInterestGenerator.Parameter 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


Copyright © 2013. All Rights Reserved.