public enum ShutdownQuietPeriod extends Enum<ShutdownQuietPeriod>
| Modifier and Type | Method and Description |
|---|---|
Duration |
getDuration() |
static ShutdownQuietPeriod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ShutdownQuietPeriod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShutdownQuietPeriod QUICK
public static final ShutdownQuietPeriod DEFAULT
private final Duration duration
public static ShutdownQuietPeriod[] values()
for (ShutdownQuietPeriod c : ShutdownQuietPeriod.values()) System.out.println(c);
public static ShutdownQuietPeriod 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 nullpublic Duration getDuration()
Copyright © 2024 Apache NiFi Project. All rights reserved.