public static final enum

FindReplaceOptions.MatchType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.pdftron.pdf.FindReplaceOptions.MatchType

Class Overview

An enumeration used to specify the mode used to match text.

Summary

Enum Values
FindReplaceOptions.MatchType  e_exact  Exactly match the text. 
FindReplaceOptions.MatchType  e_regex  Use of regular to match the text is allowed. 
FindReplaceOptions.MatchType  e_wildcards  Use of wildcards to match the text is allowed. 
Public Methods
static FindReplaceOptions.MatchType valueOf(String name)
final static MatchType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final FindReplaceOptions.MatchType e_exact

Exactly match the text.

public static final FindReplaceOptions.MatchType e_regex

Use of regular to match the text is allowed.

public static final FindReplaceOptions.MatchType e_wildcards

Use of wildcards to match the text is allowed.

Public Methods

public static FindReplaceOptions.MatchType valueOf (String name)

public static final MatchType[] values ()