public enum ConvertErrorAction extends Enum<ConvertErrorAction>
This class represents action for conversion errors.
Enum Constant and Description |
---|
Delete
Delete convert errors
|
None
Do nothing with convert errors
|
Modifier and Type | Method and Description |
---|---|
static ConvertErrorAction |
getByValue(int value) |
int |
getValue() |
static ConvertErrorAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConvertErrorAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConvertErrorAction Delete
public static final ConvertErrorAction None
public static ConvertErrorAction[] values()
for (ConvertErrorAction c : ConvertErrorAction.values()) System.out.println(c);
public static ConvertErrorAction 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 int getValue()
public static ConvertErrorAction getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.