public enum NetworkQualityVerbosity extends java.lang.Enum<NetworkQualityVerbosity>
Participant
.Enum Constant and Description |
---|
NETWORK_QUALITY_VERBOSITY_MINIMAL
Reports only the
NetworkQualityLevel for the Participant . |
NETWORK_QUALITY_VERBOSITY_NONE
Nothing is reported for the
Participant . |
Modifier and Type | Method and Description |
---|---|
static NetworkQualityVerbosity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NetworkQualityVerbosity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NetworkQualityVerbosity NETWORK_QUALITY_VERBOSITY_NONE
Participant
. This is not a valid option for the LocalParticipant
.public static final NetworkQualityVerbosity NETWORK_QUALITY_VERBOSITY_MINIMAL
NetworkQualityLevel
for the Participant
.public static NetworkQualityVerbosity[] values()
for (NetworkQualityVerbosity c : NetworkQualityVerbosity.values()) System.out.println(c);
public static NetworkQualityVerbosity 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 null6.0.0