public static enum PCollection.IsBounded extends java.lang.Enum<PCollection.IsBounded>
PCollection
is bounded.Enum Constant and Description |
---|
BOUNDED
Indicates that a
PCollection contains a bounded number of elements. |
UNBOUNDED
Indicates that a
PCollection contains an unbounded number of elements. |
Modifier and Type | Method and Description |
---|---|
PCollection.IsBounded |
and(PCollection.IsBounded that)
Returns the composed IsBounded property.
|
static PCollection.IsBounded |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PCollection.IsBounded[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PCollection.IsBounded BOUNDED
PCollection
contains a bounded number of elements.public static final PCollection.IsBounded UNBOUNDED
PCollection
contains an unbounded number of elements.public static PCollection.IsBounded[] values()
for (PCollection.IsBounded c : PCollection.IsBounded.values()) System.out.println(c);
public static PCollection.IsBounded 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 nullpublic PCollection.IsBounded and(PCollection.IsBounded that)