public enum ExactlyOnceSupport extends Enum<ExactlyOnceSupport>
| Enum Constant and Description |
|---|
SUPPORTEDSignals that a connector supports exactly-once semantics. |
UNSUPPORTEDSignals that a connector does not support exactly-once semantics. |
| Modifier and Type | Method and Description |
|---|---|
static ExactlyOnceSupport | valueOf(String name)Returns the enum constant of this type with the specified name. |
static ExactlyOnceSupport[] | values()Returns an array containing the constants of this enum type, in the order they are declared. |
public static final ExactlyOnceSupport SUPPORTED
public static final ExactlyOnceSupport UNSUPPORTED
public static ExactlyOnceSupport[] values()
for (ExactlyOnceSupport c : ExactlyOnceSupport.values()) System.out.println(c);
public static ExactlyOnceSupport valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null