public static enum AMPReportingService.ModuleManagementStrategy extends Enum<AMPReportingService.ModuleManagementStrategy>
Enum Constant and Description |
---|
ABORT
Don't report to AMP when a module with the same ID or name already exists; do not overwrite or append accessibility concerns to the existing module.
|
APPEND
Append any new accessibility concerns to a module, creating the module first if it doesn't already exist; do not overwrite any existing modules.
|
OVERWRITE
Overwrite existing modules when a module with the same ID or name already exists, deleting any existing accessibility concerns in the module prior to repopulating it with any new accessibility concerns.
|
Modifier and Type | Method and Description |
---|---|
static AMPReportingService.ModuleManagementStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AMPReportingService.ModuleManagementStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AMPReportingService.ModuleManagementStrategy ABORT
public static final AMPReportingService.ModuleManagementStrategy APPEND
public static final AMPReportingService.ModuleManagementStrategy OVERWRITE
public static AMPReportingService.ModuleManagementStrategy 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 static AMPReportingService.ModuleManagementStrategy[] values()
for (AMPReportingService.ModuleManagementStrategy c : AMPReportingService.ModuleManagementStrategy.values()) System.out.println(c);
Copyright © 2021. All rights reserved.