Package org.apache.heron.streamlet.impl
Enum StreamletBaseImpl.StreamletNamePrefix
- java.lang.Object
-
- java.lang.Enum<StreamletBaseImpl.StreamletNamePrefix>
-
- org.apache.heron.streamlet.impl.StreamletBaseImpl.StreamletNamePrefix
-
- All Implemented Interfaces:
Serializable
,Comparable<StreamletBaseImpl.StreamletNamePrefix>
- Enclosing class:
- StreamletBaseImpl<R>
protected static enum StreamletBaseImpl.StreamletNamePrefix extends Enum<StreamletBaseImpl.StreamletNamePrefix>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static StreamletBaseImpl.StreamletNamePrefix
valueOf(String name)
Returns the enum constant of this type with the specified name.static StreamletBaseImpl.StreamletNamePrefix[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONSUMER
public static final StreamletBaseImpl.StreamletNamePrefix CONSUMER
-
COUNT
public static final StreamletBaseImpl.StreamletNamePrefix COUNT
-
CUSTOM
public static final StreamletBaseImpl.StreamletNamePrefix CUSTOM
-
CUSTOM_BASIC
public static final StreamletBaseImpl.StreamletNamePrefix CUSTOM_BASIC
-
CUSTOM_WINDOW
public static final StreamletBaseImpl.StreamletNamePrefix CUSTOM_WINDOW
-
FILTER
public static final StreamletBaseImpl.StreamletNamePrefix FILTER
-
FLATMAP
public static final StreamletBaseImpl.StreamletNamePrefix FLATMAP
-
JOIN
public static final StreamletBaseImpl.StreamletNamePrefix JOIN
-
KEYBY
public static final StreamletBaseImpl.StreamletNamePrefix KEYBY
-
LOGGER
public static final StreamletBaseImpl.StreamletNamePrefix LOGGER
-
MAP
public static final StreamletBaseImpl.StreamletNamePrefix MAP
-
SOURCE
public static final StreamletBaseImpl.StreamletNamePrefix SOURCE
-
REDUCE
public static final StreamletBaseImpl.StreamletNamePrefix REDUCE
-
REMAP
public static final StreamletBaseImpl.StreamletNamePrefix REMAP
-
SINK
public static final StreamletBaseImpl.StreamletNamePrefix SINK
-
SPLIT
public static final StreamletBaseImpl.StreamletNamePrefix SPLIT
-
SPOUT
public static final StreamletBaseImpl.StreamletNamePrefix SPOUT
-
SUPPLIER
public static final StreamletBaseImpl.StreamletNamePrefix SUPPLIER
-
TRANSFORM
public static final StreamletBaseImpl.StreamletNamePrefix TRANSFORM
-
UNION
public static final StreamletBaseImpl.StreamletNamePrefix UNION
-
-
Method Detail
-
values
public static StreamletBaseImpl.StreamletNamePrefix[] 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 (StreamletBaseImpl.StreamletNamePrefix c : StreamletBaseImpl.StreamletNamePrefix.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StreamletBaseImpl.StreamletNamePrefix 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<StreamletBaseImpl.StreamletNamePrefix>
-
-