Enum StreamPropertyDerivations.StreamProperties.StreamDistribution
- java.lang.Object
-
- java.lang.Enum<StreamPropertyDerivations.StreamProperties.StreamDistribution>
-
- io.trino.sql.planner.optimizations.StreamPropertyDerivations.StreamProperties.StreamDistribution
-
- All Implemented Interfaces:
Serializable,Comparable<StreamPropertyDerivations.StreamProperties.StreamDistribution>
- Enclosing class:
- StreamPropertyDerivations.StreamProperties
public static enum StreamPropertyDerivations.StreamProperties.StreamDistribution extends Enum<StreamPropertyDerivations.StreamProperties.StreamDistribution>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StreamPropertyDerivations.StreamProperties.StreamDistributionvalueOf(String name)Returns the enum constant of this type with the specified name.static StreamPropertyDerivations.StreamProperties.StreamDistribution[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SINGLE
public static final StreamPropertyDerivations.StreamProperties.StreamDistribution SINGLE
-
MULTIPLE
public static final StreamPropertyDerivations.StreamProperties.StreamDistribution MULTIPLE
-
FIXED
public static final StreamPropertyDerivations.StreamProperties.StreamDistribution FIXED
-
-
Method Detail
-
values
public static StreamPropertyDerivations.StreamProperties.StreamDistribution[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StreamPropertyDerivations.StreamProperties.StreamDistribution c : StreamPropertyDerivations.StreamProperties.StreamDistribution.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StreamPropertyDerivations.StreamProperties.StreamDistribution valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-