Package csw.params.commands
Class Sequence
- java.lang.Object
-
- csw.params.commands.Sequence
-
- All Implemented Interfaces:
CommandSerializable
,java.io.Serializable
,scala.Equals
,scala.Product
public final class Sequence extends java.lang.Object implements CommandSerializable, scala.Product, java.io.Serializable
a sequence ofSequenceCommand
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Sequence(scala.collection.immutable.Seq<SequenceCommand> commands)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Sequence
add(Sequence other)
Sequence
add(scala.collection.immutable.Seq<SequenceCommand> others)
static Sequence
apply(SequenceCommand command, scala.collection.immutable.Seq<SequenceCommand> commands)
scala.collection.immutable.Seq<SequenceCommand>
commands()
static Sequence
create(java.util.List<SequenceCommand> commands)
Create a Sequence model from a list ofSequenceCommand
-
-
-
Constructor Detail
-
Sequence
public Sequence(scala.collection.immutable.Seq<SequenceCommand> commands)
-
-
Method Detail
-
apply
public static Sequence apply(SequenceCommand command, scala.collection.immutable.Seq<SequenceCommand> commands)
-
create
public static Sequence create(java.util.List<SequenceCommand> commands)
Create a Sequence model from a list ofSequenceCommand
- Parameters:
commands
- (undocumented)- Returns:
- (undocumented)
-
commands
public scala.collection.immutable.Seq<SequenceCommand> commands()
-
add
public Sequence add(scala.collection.immutable.Seq<SequenceCommand> others)
-
-