Enum SearchFile
- java.lang.Object
- 
- java.lang.Enum<SearchFile>
- 
- com.redwood.scheduler.api.model.enumeration.SearchFile
 
 
- 
- All Implemented Interfaces:
- BaseSchedulerEnumeration<SearchFile,Integer>,- SchedulerIntegerEnumeration<SearchFile>,- Serializable,- Comparable<SearchFile>
 
 public enum SearchFile extends Enum<SearchFile> implements SchedulerIntegerEnumeration<SearchFile> Options for searching files (Integer Enumeration)
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ByteOffsetSearch lines but from/to a particular byte offset, not line number.EntireLineThe expression must match the entire line (the newline is implicit, and should not be included in the expression).IgnoreCaseIgnore case when comparing.LiveViewReturn a possible incomplete last line; terminate all lines by EOL not just between lines.NoOptionsNo search options; a litteral search will be performed on the whole file and the first line matched will be returned in aInputStream.RangeResultReturn all matching results from the query.ReverseSearch from the end of the file rather than the beginning.WildCardMake?and*act as wild cards.
 - 
Field SummaryFields Modifier and Type Field Description static intByteOffsetCodeThe int returned from ByteOffset.getCodeEx().static intEntireLineCodeThe int returned from EntireLine.getCodeEx().static intIgnoreCaseCodeThe int returned from IgnoreCase.getCodeEx().static intLiveViewCodeThe int returned from LiveView.getCodeEx().static intNoOptionsCodeThe int returned from NoOptions.getCodeEx().static intRangeResultCodeThe int returned from RangeResult.getCodeEx().static intReverseCodeThe int returned from Reverse.getCodeEx().static intWildCardCodeThe int returned from WildCard.getCodeEx().
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCodeEx()Get the code that is used to represent this enumeration in the database.IntegergetCodeExInteger()Get the code that is used to represent this enumeration in the database.IntegergetCodeExValue()Return the code for the enumeration item as the database type of this enumeration.StringgetDescriptionKey()Get the translation-key for the description that must be used to retrieve the locale-specific description of this enumeration.StringgetTranslationEN()Get the English name of this enumeration.StringgetTranslationKey()Get the translation-key that must be used to retrieve the locale-specific name of this enumeration.static SearchFilesafeValueOf(String value)Helper function to return the SearchFile represented byvalue.static SearchFilevalueOf(int code)Helper function to return the SearchFile represented by code.static SearchFilevalueOf(Integer code)Helper function to return the SearchFile represented by code.static SearchFilevalueOf(String name)Returns the enum constant of this type with the specified name.static SearchFilevalueOfCode(String code)Helper function to return the SearchFile represented by code.static SearchFile[]values()Returns an array containing the constants of this enum type, in the order they are declared.- 
Methods inherited from class java.lang.Enumclone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 - 
Methods inherited from interface com.redwood.scheduler.api.model.enumeration.BaseSchedulerEnumerationname, ordinal
 - 
Methods inherited from interface java.lang.ComparablecompareTo
 
- 
 
- 
- 
- 
Enum Constant Detail- 
NoOptionspublic static final SearchFile NoOptions No search options; a litteral search will be performed on the whole file and the first line matched will be returned in aInputStream. If you want all matching lines, specify RangeResult.
 - 
WildCardpublic static final SearchFile WildCard Make?and*act as wild cards.
 - 
Reversepublic static final SearchFile Reverse Search from the end of the file rather than the beginning.
 - 
IgnoreCasepublic static final SearchFile IgnoreCase Ignore case when comparing.
 - 
EntireLinepublic static final SearchFile EntireLine The expression must match the entire line (the newline is implicit, and should not be included in the expression).
 - 
RangeResultpublic static final SearchFile RangeResult Return all matching results from the query.
 - 
ByteOffsetpublic static final SearchFile ByteOffset Search lines but from/to a particular byte offset, not line number.
 - 
LiveViewpublic static final SearchFile LiveView Return a possible incomplete last line; terminate all lines by EOL not just between lines. Wait a little if there is no new data.
 
- 
 - 
Field Detail- 
NoOptionsCodepublic static final int NoOptionsCode The int returned from NoOptions.getCodeEx().- See Also:
- NoOptions, Constant Field Values
 
 - 
WildCardCodepublic static final int WildCardCode The int returned from WildCard.getCodeEx().- See Also:
- WildCard, Constant Field Values
 
 - 
ReverseCodepublic static final int ReverseCode The int returned from Reverse.getCodeEx().- See Also:
- Reverse, Constant Field Values
 
 - 
IgnoreCaseCodepublic static final int IgnoreCaseCode The int returned from IgnoreCase.getCodeEx().- See Also:
- IgnoreCase, Constant Field Values
 
 - 
EntireLineCodepublic static final int EntireLineCode The int returned from EntireLine.getCodeEx().- See Also:
- EntireLine, Constant Field Values
 
 - 
RangeResultCodepublic static final int RangeResultCode The int returned from RangeResult.getCodeEx().- See Also:
- RangeResult, Constant Field Values
 
 - 
ByteOffsetCodepublic static final int ByteOffsetCode The int returned from ByteOffset.getCodeEx().- See Also:
- ByteOffset, Constant Field Values
 
 - 
LiveViewCodepublic static final int LiveViewCode The int returned from LiveView.getCodeEx().- See Also:
- LiveView, Constant Field Values
 
 
- 
 - 
Method Detail- 
valuespublic static SearchFile[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SearchFile c : SearchFile.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static SearchFile valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
valueOfCodepublic static SearchFile valueOfCode(String code) Helper function to return the SearchFile represented by code. If code is null, empty, or not a valid code then this method will return null.- Parameters:
- code- A string that is one of the codes for SearchFile
- Returns:
- The SearchFile corresponding to code, or null.
 
 - 
safeValueOfpublic static SearchFile safeValueOf(String value) Helper function to return the SearchFile represented byvalue. Ifvalueis null, or not a valid SearchFile enumeration then this method will return null.The main difference between this method and valueOf(String), is that this method will return null when passed an invalidvalue,valueOf(String)will throw anIllegalArgumentException.- Parameters:
- value- The string value that corresponds to the requested enumeration value
- Returns:
- The SearchFile corresponding to value, or null, ifvalueis null, or not a valid enumeration
- See Also:
- valueOf(String)
 
 - 
valueOfpublic static SearchFile valueOf(Integer code) Helper function to return the SearchFile represented by code. If code is null, or not a valid SearchFile code then this method will return null.- Parameters:
- code- Integer that is one of the codes for HandlerAction
- Returns:
- The SearchFile corresponding to code, or null, if code is null, or not a valid code
 
 - 
valueOfpublic static SearchFile valueOf(int code) Helper function to return the SearchFile represented by code. If code is not a valid SearchFile code then this method will return null.- Parameters:
- code- char that is one of the codes for HandlerAction
- Returns:
- The SearchFile corresponding to code, or null, if code is not a valid code
 
 - 
getCodeExpublic int getCodeEx() Description copied from interface:SchedulerIntegerEnumerationGet the code that is used to represent this enumeration in the database.- Specified by:
- getCodeExin interface- SchedulerIntegerEnumeration<SearchFile>
- Returns:
- the database code for the enumeration
 
 - 
getCodeExValuepublic Integer getCodeExValue() Description copied from interface:BaseSchedulerEnumerationReturn the code for the enumeration item as the database type of this enumeration.- Specified by:
- getCodeExValuein interface- BaseSchedulerEnumeration<SearchFile,Integer>
- Returns:
- the enumeration code
 
 - 
getCodeExIntegerpublic Integer getCodeExInteger() Description copied from interface:SchedulerIntegerEnumerationGet the code that is used to represent this enumeration in the database.- Specified by:
- getCodeExIntegerin interface- SchedulerIntegerEnumeration<SearchFile>
- Returns:
- the database code for the enumeration
 
 - 
getTranslationKeypublic String getTranslationKey() Description copied from interface:BaseSchedulerEnumerationGet the translation-key that must be used to retrieve the locale-specific name of this enumeration.- Specified by:
- getTranslationKeyin interface- BaseSchedulerEnumeration<SearchFile,Integer>
- Returns:
- the key.
 
 - 
getTranslationENpublic String getTranslationEN() Description copied from interface:BaseSchedulerEnumerationGet the English name of this enumeration.- Specified by:
- getTranslationENin interface- BaseSchedulerEnumeration<SearchFile,Integer>
- Returns:
- the English name of this enumeration.
 
 - 
getDescriptionKeypublic String getDescriptionKey() Description copied from interface:BaseSchedulerEnumerationGet the translation-key for the description that must be used to retrieve the locale-specific description of this enumeration.- Specified by:
- getDescriptionKeyin interface- BaseSchedulerEnumeration<SearchFile,Integer>
- Returns:
- the key that can be passed to
         SchedulerSession.translateField(String)to retrieve the translated description.
 
 
- 
 
-