public enum DirectiveScope extends Enum<DirectiveScope>
| Modifier and Type | Method and Description |
|---|---|
static DirectiveScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DirectiveScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirectiveScope SYSTEM
public static final DirectiveScope USER
public static DirectiveScope[] values()
for (DirectiveScope c : DirectiveScope.values()) System.out.println(c);
public static DirectiveScope 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 © 2024 CDAP Licensed under the Apache License, Version 2.0.