|
Options |
Name |
Purpose |
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Append (logical)
|
/** Indicates whether to append to the log
@param character The filename to write to
@return LogFilterBuilder This builder object. */ Inherited from OpenEdge.Logging.Filter.LogFilterBuilder
|
|
|
|
LOGICAL AppendArrayCharacterValue (character, character)
|
/** Appends a character value to an array (convenience)
@param character The option name
@param character the value */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Build (character)
|
/** Returns log writer build for a logging type
@param character The Filter type for which to build the logger
@return LogFilterBuilder The entity writer builder to use */ Inherited from OpenEdge.Logging.Filter.LogFilterBuilder
|
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Build (character, BuilderRegistry)
|
/** Returns log writer build for a logging type.
To find a filter builder,
i. Look in the registry for the filter type. If not found,
ii. Look for the default ('*') builder in the registry. If not found,
iii. Use this type (LogFilterBuilder)
@param character The Filter type for which to build the logger
@param BuilderRegistry A registry of Filter writers to user
@return LogFilterBuilder The entity writer builder to use */ Inherited from OpenEdge.Logging.Filter.LogFilterBuilder
|
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Build (Class)
|
/** Returns log writer build for a logging type
@param P.L.Class The Filter type for which to build the logger
@return LogFilterBuilder The entity writer builder to use */ Inherited from OpenEdge.Logging.Filter.LogFilterBuilder
|
|
|
|
ClearOptions ()
|
/** Clears all options for this builder */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
LOGICAL FindConfigRecord (buffer, character)
|
/** Internal helper method to perform the find. This method attempts to find a record using
the input buffer.
@param buffer The buffer of the ConfigOption table.
@param character The config name
@return logical True if a config record was found. */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder FormatAs (character)
|
/** Sets a format string for a filter
@param character The filename to write to
@return LogFilterBuilder This builder object. */ Inherited from OpenEdge.Logging.Filter.LogFilterBuilder
|
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder FromRegistry (BuilderRegistry)
|
/** Sets the logging level for the logger
@param BuilderRegistry The registry containing the map of log writers
@return LogFilterBuilder This builder object. */ Inherited from OpenEdge.Logging.Filter.LogFilterBuilder
|
|
|
|
Progress.Lang.Class GetFilterType (character)
|
/** Returns a filter writer from a registry; either the optional one set via loggerFilterRegistry or
the default LoggerFilterRegistry:Registry. It's the caller's responsibility to invoke and
use the filter type returned.
@return Progress.Lang.Class The type of the filter writer. */ Overrides OpenEdge.Logging.Filter.LogFilterBuilder:GetFilterType (character)
|
|
|
|
DATETIME-TZ GetOptionDateTimeValue (character)
|
/** Returns an option's datetime value
@param character The option name
@return datetime-tz the value */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
LOGICAL GetOptionLogicalValue (character)
|
/** Returns an option's logical value
@param character The option name
@return logical the value */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
LONGCHAR GetOptionLongcharValue (character)
|
/** Returns an option's longchar value
@param character The option name
@return longchar the value */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
DECIMAL GetOptionNumericValue (character)
|
/** Returns an option's decimal value
@param character The option name
@return decimal the value */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
Object GetOptionObjectValue (character)
|
/** Returns an option's object value
@param character The option name
@return Object the value */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
CHARACTER GetOptionStringArrayValue (character)
|
/** Returns an option's character array value
@param character The option name
@return character[] the value */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
CHARACTER GetOptionStringValue (character)
|
/** Returns an option's character value
@param character The option name
@return character the value */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
LOGICAL HasOption (character)
|
/** Checks whether a config option already exists
@param character The option name
@return logical True if the named configuration option exists */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
OpenEdge.Logging.Filter.ILoggerFilter NewFilter ()
|
/* Creates the instance.
@return ILoggerFilter A filter instance */ Overrides OpenEdge.Logging.Filter.LogFilterBuilder:NewFilter ()
|
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Option (character, character)
|
/** Adds or overwrites an option for the logger filter.
@param character The name of the option
@param character The value of the option (can be anything)
@return LogFilterBuilder This builder object. */ Inherited from OpenEdge.Logging.Filter.LogFilterBuilder
|
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Option (character, decimal)
|
/** Adds or overwrites an option for the logger filter.
@param character The name of the option
@param decimal The value of the option (can be anything)
@return LogFilterBuilder This builder object. */ Inherited from OpenEdge.Logging.Filter.LogFilterBuilder
|
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Option (character, int64)
|
/** Adds or overwrites an option for the logger filter.
@param character The name of the option
@param int64 The value of the option (can be anything)
@return LogFilterBuilder This builder object. */ Inherited from OpenEdge.Logging.Filter.LogFilterBuilder
|
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Option (character, logical)
|
/** Adds or overwrites an option for the logger filter.
@param character The name of the option
@param logical The value of the option (can be anything)
@return LogFilterBuilder This builder object. */ Inherited from OpenEdge.Logging.Filter.LogFilterBuilder
|
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Option (character, Object)
|
/** Adds or overwrites an option for the logger filter.
@param character The name of the option
@param Object The value of the option (can be anything)
@return LogFilterBuilder This builder object. */ Inherited from OpenEdge.Logging.Filter.LogFilterBuilder
|
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder Options (JsonObject)
|
/** Adds or overwrites an option for the logger filter.
@param JsonObject The Filter options (can be anything)
@return LogFilterBuilder This builder object. */ Inherited from OpenEdge.Logging.Filter.LogFilterBuilder
|
|
|
|
LOGICAL RemoveOption (character)
|
/** Removes an option
@param character The option name */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
LOGICAL SetOption (character, character)
|
/** Stores an value as an option
@param character The option name
@param character the value
@return logical True is the option was overwritten */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
LOGICAL SetOption (character, character[])
|
/** Stores an value as an option
@param character The option name
@param character the value
@return logical True is the option was overwritten */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
LOGICAL SetOption (character, datetime-tz)
|
/** Stores a datetime-tzvalue as an option
@param character The option name
@param datetime-tz the value
@return logical True is the option was overwritten */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
LOGICAL SetOption (character, decimal)
|
/** Stores an numeric value as an option
@param character The option name
@param Object the value
@return logical True is the option was overwritten */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
LOGICAL SetOption (character, logical)
|
/** Stores a logical value as an option
@param character The option name
@param logical the value
@return logical True is the option was overwritten */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
LOGICAL SetOption (character, Object)
|
/** Stores an object value as an option
@param character The option name
@param Object the value
@return logical True is the option was overwritten */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
LOGICAL SetOption (Class, Object)
|
/** Stores an object value as an option
@param Progress.Lang>Class The option name (as a type)
@param Object the value
@return logical True is the option was overwritten */ Inherited from OpenEdge.Core.Util.ConfigBuilder
|
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder WriteTo (character)
|
/** Sets the output destination
@param character The filename to write to
@return LogFilterBuilder This builder object. */ Inherited from OpenEdge.Logging.Filter.LogFilterBuilder
|
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder WriteTo (FileOutputStream)
|
/** Sets the output destination
@param FileOutputStream The filename to write to
@return LogFilterBuilder This builder object. */ Inherited from OpenEdge.Logging.Filter.LogFilterBuilder
|
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder WriteTo (JsonArray)
|
/** Sets the output destination
@param JsonArray The object to write into to
@return LogFilterBuilder This builder object. */ Inherited from OpenEdge.Logging.Filter.LogFilterBuilder
|
|
|
|
OpenEdge.Logging.Filter.LogFilterBuilder WriteTo (OutputStream)
|
/** Sets the output destination
@param OutputStream The filename to write to
@return LogFilterBuilder This builder object. */ Inherited from OpenEdge.Logging.Filter.LogFilterBuilder
|