public enum Boundedness extends Enum<Boundedness>
| 枚举常量和说明 |
|---|
BOUNDED
A BOUNDED stream is a stream with finite records.
|
UNBOUNDED
A UNBOUNDED stream is a stream with infinite records.
|
public static final Boundedness BOUNDED
public static final Boundedness UNBOUNDED
public static Boundedness[] values()
for (Boundedness c : Boundedness.values()) System.out.println(c);
public static Boundedness valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2024 The Apache Software Foundation. All rights reserved.