Uses of Class
oracle.as.scheduler.IllegalArgumentException
Packages that use IllegalArgumentException
Package
Description
Enterprise Scheduler API interfaces and classes, including
RuntimeService and MetadataService.
Fields for querying metadata.
Metadata type specific helper classes for querying metadata.
Request Log and Output Content API.
-
Uses of IllegalArgumentException in oracle.as.scheduler
Methods in oracle.as.scheduler that throw IllegalArgumentExceptionModifier and TypeMethodDescriptionvoidRuntimeService.closeContent(RuntimeServiceHandle handle, ContentHandle contentHandle) Closes the previously opened log or output content and releases the handle.booleanRuntimeService.copyBinaryContentToFile(RuntimeServiceHandle rsh, ContentHandle handle, File file, boolean lockRow) Copy binary content of the given request to file.booleanRuntimeService.copyTextContentToFile(RuntimeServiceHandle handle, ContentHandle contentHandle, File file, boolean lockRow) Copy log or output text content of the given request to file.byte[]RuntimeService.getBinaryContent(RuntimeServiceHandle handle, ContentHandle contentHandle, int maxBytes) Gets at mostmaxBytesbytes from the binary content.byte[]RuntimeService.getBinaryContent(RuntimeServiceHandle handle, ContentHandle contentHandle, int maxBytes, boolean lockRow) Gets at mostmaxBytesbytes from the binary content.RuntimeService.getBinaryContentLob(RuntimeServiceHandle handle, ContentHandle contentHandle) Gets the binary content.static RecurrenceFields.DAY_OF_WEEKRecurrenceFields.DAY_OF_WEEK.getDayOfWeek(String name) The DAY_OF_WEEK associated with the given value.String[]RuntimeService.getLogLines(RuntimeServiceHandle handle, ContentHandle contentHandle, int maxLines) Gets at mostmaxLineslines from the request log, continuing from the last call to this method.char[]RuntimeService.getTextContent(RuntimeServiceHandle handle, ContentHandle contentHandle, int maxChars) Gets at mostmaxCharslines from the log or output text content.char[]RuntimeService.getTextContent(RuntimeServiceHandle handle, ContentHandle contentHandle, int maxChars, boolean lockRow) Gets at mostmaxCharslines from the log or output text content.RuntimeService.getTextContentLob(RuntimeServiceHandle handle, ContentHandle contentHandle) Gets text content.Generates a list of possible occurrences of this Schedule object starting with the given time up to the specified count.Generates a list of possible occurrences of this Schedule object within a given time period up to the default limit of 300.Generates a list of possible occurrences of this Schedule object within a given time period.voidRecurrenceFields.TIME_OF_DAY.setHour(int hour) Set the Hour part of this TIME_OF_DAY instance.voidRecurrenceFields.TIME_OF_DAY.setMinute(int minute) Set the Minute part of this TIME_OF_DAY instance.voidRecurrenceFields.TIME_OF_DAY.setSecond(int second) Set the second part of this TIME_OF_DAY instance.voidMetadataService.QueryField.validateComparator(oracle.as.scheduler.query.QueryComparator comparator) voidMetadataService.QueryField.validateOperator(oracle.as.scheduler.query.QueryOperator operator) voidMetadataService.QueryField.validateValue(String value) RecurrenceFields.DAY_OF_MONTH.valueOf(int value) The DAY_OF_MONTH associated with the given integer.RecurrenceFields.MONTH_OF_YEAR.valueOf(int value) Gets the MONTH_OF_YEAR associated with the given value.static RecurrenceFields.TIME_OF_DAYRecurrenceFields.TIME_OF_DAY.valueOf(int hour, int minute, int second) A TIME_OF_DAY instance representing the time specified by given values for hour, minute, and second.RecurrenceFields.WEEK_OF_MONTH.valueOf(int value) The WEEK_OF_MONTH associated with the given value.static RecurrenceFields.YEARRecurrenceFields.YEAR.valueOf(int value) The YEAR instance representing the specified int value.static MetadataService.QueryFieldMetadataService.QueryField.valueOfField(String s) voidRuntimeService.writeContent(ContentHandle contentHandle, byte[] bytes) Appends the bytes to the output content during job execution.voidRuntimeService.writeContent(ContentHandle contentHandle, char[] chars) Appends the characters to the output content during job execution.voidRuntimeService.writeContent(ContentHandle contentHandle, String message) Appends the string to the output content during job execution.voidRuntimeService.writelnContent(ContentHandle contentHandle, String message) Appends the string followed by a line feed character to the output content during job execution. -
Uses of IllegalArgumentException in oracle.as.scheduler.metadata.query
Methods in oracle.as.scheduler.metadata.query that throw IllegalArgumentExceptionModifier and TypeMethodDescriptionvoidMetadataQueryFilter.evaluate(MetadataQueryVisitor visitor) This method fulfills the contract of the Visitor pattern.MetadataQueryVisitor.getResult()<VALUE_TYPE extends Serializable>
voidMetadataQueryVisitor.visitLeaf(oracle.as.scheduler.metadata.query.MetadataQueryField<VALUE_TYPE> queryField, oracle.as.scheduler.query.QueryComparator queryComparator, VALUE_TYPE value) voidMetadataQueryVisitor.visitParent(oracle.as.scheduler.query.QueryOperator queryOperator) -
Uses of IllegalArgumentException in oracle.as.scheduler.metadata.query.builder
Methods in oracle.as.scheduler.metadata.query.builder that throw IllegalArgumentExceptionModifier and TypeMethodDescription<T extends Serializable>
oracle.as.scheduler.metadata.query.MetadataQueryField<T>MetadataQueryBuilderFactory.convertField(String fieldName) Adapter method to convert field name of typeMetadataService.QueryFieldtoMetadataQueryFieldoracle.as.scheduler.metadata.query.MetadataQueryField<String>MetadataQueryBuilderFactory.convertField(MetadataService.QueryField fieldName) Adapter method to convert field of typeMetadataService.QueryFieldtoMetadataQueryField<METADATA_TYPE extends BaseMetadata<METADATA_TYPE>,T extends Serializable>
MetadataQueryFilter<METADATA_TYPE>MetadataQueryBuilderFactory.convertFilter(BaseMetadataType<METADATA_TYPE> metadataType, Filter filter) Adapter method for converting an oldFilterinto a newMetadataQueryFilter -
Uses of IllegalArgumentException in oracle.as.scheduler.request
Methods in oracle.as.scheduler.request that throw IllegalArgumentExceptionModifier and TypeMethodDescriptionvoidRemoteContentHelper.closeOutputContent(ContentHandle contentHandle) Closes the content associated with the given content handle.booleanRemoteContentHelper.copyBinaryContentToFile(ContentHandle contentHandle, File file, boolean lockRow) Copy binary content of the given request to file.booleanRemoteContentHelper.copyTextContentToFile(ContentHandle contentHandle, File file, boolean lockRow) Copy log or output text content of the given request to file.byte[]RemoteContentHelper.getBinaryContent(ContentHandle contentHandle, int maxBytes) Gets at mostmaxBytesbytes from the binary content.byte[]RemoteContentHelper.getBinaryContent(ContentHandle contentHandle, int maxBytes, boolean lockRow) Gets at mostmaxBytesbytes from the binary content.RemoteContentHelper.getBinaryContentLob(ContentHandle contentHandle) Gets the binary content.char[]RemoteContentHelper.getTextContent(ContentHandle contentHandle, int maxChars) Gets at mostmaxCharscharacters from the text output content.char[]RemoteContentHelper.getTextContent(ContentHandle contentHandle, int maxChars, boolean lockRow) Gets at mostmaxCharscharacters from the text output content.RemoteContentHelper.getTextContentLob(ContentHandle contentHandle) Gets the text output content.voidRemoteContentHelper.write(ContentHandle contentHandle, byte[] data) Appends the bytes to the output content during job execution.voidRemoteContentHelper.write(ContentHandle contentHandle, char[] data) Appends the characters to the output content during job execution.voidRemoteContentHelper.write(ContentHandle contentHandle, String data) Appends the string to the output content during job execution.voidRemoteContentHelper.writeln(ContentHandle contentHandle, String data) Appends the string followed by a line feed character to the output content during job execution.