public enum DeletionPropagation extends Enum<DeletionPropagation>
Enum Constant and Description |
---|
BACKGROUND |
FOREGROUND |
ORPHAN |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static DeletionPropagation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeletionPropagation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeletionPropagation ORPHAN
public static final DeletionPropagation BACKGROUND
public static final DeletionPropagation FOREGROUND
public static DeletionPropagation[] values()
for (DeletionPropagation c : DeletionPropagation.values()) System.out.println(c);
public static DeletionPropagation 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 String toString()
toString
in class Enum<DeletionPropagation>
Copyright © 2015–2020 Red Hat. All rights reserved.