org.mule.transport.polling.watermark.selector
Enum WatermarkSelectorBroker

java.lang.Object
  extended by java.lang.Enum<WatermarkSelectorBroker>
      extended by org.mule.transport.polling.watermark.selector.WatermarkSelectorBroker
All Implemented Interfaces:
Serializable, Comparable<WatermarkSelectorBroker>

public enum WatermarkSelectorBroker
extends Enum<WatermarkSelectorBroker>

Broker for the default implementations of WatermarkSelector

Since:
3.5.0

Enum Constant Summary
FIRST
           
LAST
           
MAX
           
MIN
           
 
Method Summary
abstract  WatermarkSelector newSelector()
          Returns a new instance of WatermarkSelector.
static WatermarkSelectorBroker valueOf(String name)
          Returns the enum constant of this type with the specified name.
static WatermarkSelectorBroker[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

MIN

public static final WatermarkSelectorBroker MIN

MAX

public static final WatermarkSelectorBroker MAX

FIRST

public static final WatermarkSelectorBroker FIRST

LAST

public static final WatermarkSelectorBroker LAST
Method Detail

values

public static WatermarkSelectorBroker[] 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 (WatermarkSelectorBroker c : WatermarkSelectorBroker.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static WatermarkSelectorBroker 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 name
NullPointerException - if the argument is null

newSelector

public abstract WatermarkSelector newSelector()
Returns a new instance of WatermarkSelector. Each invocation returns a different instance

Returns:
a WatermarkSelector


Copyright © 2003-2014 MuleSoft, Inc.. All Rights Reserved.