public enum RescalingBehaviour extends Enum<RescalingBehaviour> implements BiConsumerWithException<JobVertex,Integer,FlinkException>
Modifier and Type | Method and Description |
---|---|
static RescalingBehaviour |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RescalingBehaviour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
accept, unchecked
public static final RescalingBehaviour STRICT
public static final RescalingBehaviour RELAXED
public static RescalingBehaviour[] values()
for (RescalingBehaviour c : RescalingBehaviour.values()) System.out.println(c);
public static RescalingBehaviour 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 nullCopyright © 2014–2020 The Apache Software Foundation. All rights reserved.