public enum ProducerScope extends Enum<ProducerScope>
Producer
Enum Constant and Description |
---|
Live
Live event messages
|
Prematch
Prematch messages
|
Virtuals
Virtuals messages
|
Modifier and Type | Method and Description |
---|---|
static ProducerScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProducerScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProducerScope Live
public static final ProducerScope Prematch
public static final ProducerScope Virtuals
public static ProducerScope[] values()
for (ProducerScope c : ProducerScope.values()) System.out.println(c);
public static ProducerScope valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2016–2025. All rights reserved.