public interface ConditionFactory
Condition
interface and
creates new instances of those implementations on request from a client.
A ConditionFactory
must be registered in the Experiments
namespace before
the ExperimentHandler
for this server can be used by clients.
Modifier and Type | Method and Description |
---|---|
Condition<ExperimentState> |
create(String name)
Creates a new
Condition instance that is associated with the given name. |
Set<String> |
supportedNames()
Returns the set of names that have been associated with subclasses of the
Condition
interface in this instance. |
Set<String> supportedNames()
Condition
interface in this instance.create(java.lang.String)
methodCondition<ExperimentState> create(String name)
Condition
instance that is associated with the given name.name
- a short name used to describe the Condition
instance to createCondition
instance, or null if the name is unknownCopyright © 2013. All rights reserved.