public enum DropEffect extends Enum<DropEffect>
More information can be found in MDN official documentation
| Modifier and Type | Method and Description |
|---|---|
String |
getEffect() |
static DropEffect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DropEffect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DropEffect COPY
public static final DropEffect MOVE
public static final DropEffect LINK
public static final DropEffect NONE
public static DropEffect[] values()
for (DropEffect c : DropEffect.values()) System.out.println(c);
public static DropEffect 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 getEffect()
Copyright © 2019–2022 Dominokit. All rights reserved.