java.io.Serializable
, java.lang.Comparable<SocialGraphMiner.InteractionType>
public static enum SocialGraphMiner.InteractionType extends java.lang.Enum<SocialGraphMiner.InteractionType>
Enum Constant | Description |
---|---|
RECEIVE |
|
RECEIVE_REPLY |
|
SEND |
Modifier and Type | Method | Description |
---|---|---|
static SocialGraphMiner.InteractionType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SocialGraphMiner.InteractionType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SocialGraphMiner.InteractionType SEND
public static final SocialGraphMiner.InteractionType RECEIVE
public static final SocialGraphMiner.InteractionType RECEIVE_REPLY
public static SocialGraphMiner.InteractionType[] values()
for (SocialGraphMiner.InteractionType c : SocialGraphMiner.InteractionType.values()) System.out.println(c);
public static SocialGraphMiner.InteractionType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null