public static enum BasePolicy.Match extends Enum<BasePolicy.Match>
| Enum Constant and Description | 
|---|
ALL_PARAMETERS  | 
ANY_PARAMETER  | 
NO_PARAMETERS  | 
| Modifier and Type | Method and Description | 
|---|---|
static BasePolicy.Match | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static BasePolicy.Match[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final BasePolicy.Match ANY_PARAMETER
public static final BasePolicy.Match ALL_PARAMETERS
public static final BasePolicy.Match NO_PARAMETERS
public static BasePolicy.Match[] values()
for (BasePolicy.Match c : BasePolicy.Match.values()) System.out.println(c);
public static BasePolicy.Match 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 © 2021. All rights reserved.