public enum IcapModel extends Enum<IcapModel>
Enum Constant and Description |
---|
DEFAULT_MODEL
Default model (usable with ClamAV)
|
ICAP_AVSCAN
ICAP generic model (as default, usable with ClamAV)
|
ICAP_CLAMAV
ICAP ClamAV model (less generic)
|
ICAP_VIRUS_SCAN
ICAP Virus_scan model (less generic)
|
Modifier and Type | Method and Description |
---|---|
String[] |
getDefaultArgs() |
static IcapModel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IcapModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IcapModel DEFAULT_MODEL
public static final IcapModel ICAP_AVSCAN
public static final IcapModel ICAP_CLAMAV
public static final IcapModel ICAP_VIRUS_SCAN
public static IcapModel[] values()
for (IcapModel c : IcapModel.values()) System.out.println(c);
public static IcapModel 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 final String[] getDefaultArgs()
Copyright © 2009–2022 Waarp. All rights reserved.