public static enum ReplaceTextStrategy.NoCharacterAction extends Enum<ReplaceTextStrategy.NoCharacterAction>
Action to perform if font does not contain required character
Enum Constant and Description |
---|
ReplaceAnyway
Replace text anyway without font substitution
|
ThrowException
Throw exception
|
UseStandardFont
Repalce font to standard font which contains required character
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static ReplaceTextStrategy.NoCharacterAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplaceTextStrategy.NoCharacterAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplaceTextStrategy.NoCharacterAction ThrowException
Throw exception
public static final ReplaceTextStrategy.NoCharacterAction UseStandardFont
Repalce font to standard font which contains required character
public static final ReplaceTextStrategy.NoCharacterAction ReplaceAnyway
Replace text anyway without font substitution
public static ReplaceTextStrategy.NoCharacterAction[] values()
for (ReplaceTextStrategy.NoCharacterAction c : ReplaceTextStrategy.NoCharacterAction.values()) System.out.println(c);
public static ReplaceTextStrategy.NoCharacterAction 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()
Copyright © 2023 Aspose. All Rights Reserved.