Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Enterprise Scheduler Service
11g Release 1 (11.1.1.6.3)
E26229-05


Uses of Class
oracle.as.scheduler.IllegalArgumentException

Packages that use IllegalArgumentException
oracle.as.scheduler Enterprise Scheduler API interfaces and classes. 
oracle.as.scheduler.cp   
oracle.as.scheduler.metadata.query   
oracle.as.scheduler.metadata.query.builder   

 

Uses of IllegalArgumentException in oracle.as.scheduler

 

Methods in oracle.as.scheduler that throw IllegalArgumentException
 void RuntimeService.closeContent(RuntimeServiceHandle handle, ContentHandle contentHandle)
          Closes the previously opened log or output content and releases the handle.
 byte[] RuntimeService.getBinaryContent(RuntimeServiceHandle handle, ContentHandle contentHandle, int maxBytes)
          Gets at most maxBytes bytes from the binary content.
static RecurrenceFields.DAY_OF_WEEK RecurrenceFields.DAY_OF_WEEK.getDayOfWeek(java.lang.String name)
          Returns the enum constant of this type with the specified name.
 java.lang.String[] RuntimeService.getLogLines(RuntimeServiceHandle handle, ContentHandle contentHandle, int maxLines)
          Gets at most maxLines lines from the request log, continuing from the last call to this method.
 char[] RuntimeService.getTextContent(RuntimeServiceHandle handle, ContentHandle contentHandle, int maxChars)
          Gets at most maxChars lines from the log or output text content.
 java.util.Collection<java.util.Calendar> Schedule.list(java.util.Calendar begin, java.util.Calendar end)
          Generates a list of possible occurrences of this Schedule object within a given time period up to the default limit of 300.
 java.util.Collection<java.util.Calendar> Schedule.list(java.util.Calendar begin, java.util.Calendar end, int limit)
          Generates a list of possible occurrences of this Schedule object within a given time period.
 java.util.Collection<java.util.Calendar> Schedule.list(java.util.Calendar begin, int count)
          Generates a list of possible occurrences of this Schedule object starting with the given time upto the specified count.
 void RecurrenceFields.TIME_OF_DAY.setHour(int hour)
          Method to set the hour part of this TIME_OF_DAY instance.
 void RecurrenceFields.TIME_OF_DAY.setMinute(int minute)
          Method to set the minute part of this TIME_OF_DAY instance.
 void RecurrenceFields.TIME_OF_DAY.setSecond(int second)
          Method to set the second part of this TIME_OF_DAY instance.
 void MetadataService.QueryField.validateComparator(oracle.as.scheduler.query.QueryComparator comparator)
           
 void MetadataService.QueryField.validateOperator(oracle.as.scheduler.query.QueryOperator operator)
           
 void MetadataService.QueryField.validateValue(java.lang.String value)
           
static RecurrenceFields.MONTH_OF_YEAR RecurrenceFields.MONTH_OF_YEAR.valueOf(int value)
          Method to retrieve the MONTH_OF_YEAR corresponding to a given integer value.
static RecurrenceFields.WEEK_OF_MONTH RecurrenceFields.WEEK_OF_MONTH.valueOf(int value)
          Method to retrieve the WEEK_OF_MONTH corresponding to a given integer value.
static RecurrenceFields.DAY_OF_MONTH RecurrenceFields.DAY_OF_MONTH.valueOf(int value)
          Method to construct an instance of DAY_OF_MONTH with an integer.
static RecurrenceFields.YEAR RecurrenceFields.YEAR.valueOf(int value)
          Returns a YEAR instance representing the specified int value.
static RecurrenceFields.TIME_OF_DAY RecurrenceFields.TIME_OF_DAY.valueOf(int hour, int minute, int second)
          Returns an instance of TIME_OF_DAY representing the time specified by given values for hour, minute, and second.
static MetadataService.QueryField MetadataService.QueryField.valueOfField(java.lang.String s)
           
 void FilterVisitor.visitLeftChild(Filter filter)
          Invoked once for every (left) child node encountered according to the traversal method.
 void FilterVisitor.visitParent(Filter filter)
          Invoked once for every parent node encountered according to the traversal method.
 void FilterVisitor.visitRightChild(Filter filter)
          Invoked once for every (left) child node encountered according to the traversal method.

 

Constructors in oracle.as.scheduler that throw IllegalArgumentException
PropertyValue(java.lang.Object obj)
          Constructor for that creates an instance from an Object.

 

Uses of IllegalArgumentException in oracle.as.scheduler.cp

 

Methods in oracle.as.scheduler.cp that throw IllegalArgumentException
static void SubmissionUtil.addPPAction(RequestParameters params, int actionOrder, java.lang.String actionName, boolean onSuccess, boolean onWarning, boolean onError, java.lang.String fileMgmtGroup, java.lang.String[] arguments)
          Deprecated. Use SubmissionUtil.addPPAction(RequestParameters, int, String, String, boolean, boolean, boolean, String, String[])
static void SubmissionUtil.addPPAction(RequestParameters params, int actionOrder, java.lang.String actionName, boolean onSuccess, boolean onWarning, boolean onError, java.lang.String fileMgmtGroup, java.lang.String stepPath, java.lang.String[] arguments)
          Deprecated. Use SubmissionUtil.addPPAction(RequestParameters, int, String, String, boolean, boolean, boolean, String, String, String[])
static void SubmissionUtil.addPPAction(RequestParameters params, int actionOrder, java.lang.String actionName, java.lang.String description, boolean onSuccess, boolean onWarning, boolean onError, java.lang.String fileMgmtGroup, java.lang.String[] arguments)
          Adds a post-processing action to a request.
static void SubmissionUtil.addPPAction(RequestParameters params, int actionOrder, java.lang.String actionName, java.lang.String description, boolean onSuccess, boolean onWarning, boolean onError, java.lang.String fileMgmtGroup, java.lang.String stepPath, java.lang.String[] arguments)
          Adds a post-processing action to a step in a jobset request.
static void SubmissionUtil.setStepArgs(RequestParameters params, java.lang.String stepPath, java.lang.String[] arguments)
          Marshals arguments in the existing CP style into an ESS properties for a step in a jobset request.
static void SubmissionUtil.setSubmitArgs(RequestParameters params, java.lang.String[] arguments)
          Marshals arguments in the existing CP style into ESS properties.

 

Uses of IllegalArgumentException in oracle.as.scheduler.metadata.query

 

Methods in oracle.as.scheduler.metadata.query that throw IllegalArgumentException
static
<T extends java.io.Serializable>
MetadataQueryField<T>
MetadataQueryFilterFactory.convertField(java.lang.String fieldName)
          Deprecated. use MetadataQueryBuilderFactory.convertField(String)
static
<METADATA_TYPE extends BaseMetadata<METADATA_TYPE>,T extends java.io.Serializable>
MetadataQueryFilter<METADATA_TYPE>
MetadataQueryFilterFactory.convertFilter(BaseMetadataType<METADATA_TYPE> metadataType, Filter filter)
          Deprecated. use MetadataQueryBuilderFactory.convertFilter(oracle.as.scheduler.BaseMetadataType<METADATA_TYPE>, oracle.as.scheduler.Filter)
 void MetadataQueryFilter.evaluate(MetadataQueryVisitor visitor)
           This method fulfills the contract of the Visitor pattern.
 RESULT_TYPE MetadataQueryVisitor.getResult()
           
 void MetadataQueryField.validateComparator(oracle.as.scheduler.query.QueryComparator comparator)
           
 void MetadataQueryField.validateOperator(oracle.as.scheduler.query.QueryOperator operator)
           
 void MetadataQueryField.validateValue(VALUE_TYPE value)
           
<VALUE_TYPE extends java.io.Serializable>
void
MetadataQueryVisitor.visitLeaf(MetadataQueryField<VALUE_TYPE> queryField, oracle.as.scheduler.query.QueryComparator queryComparator, VALUE_TYPE value)
           
 void MetadataQueryVisitor.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 IllegalArgumentException
 MetadataQueryField<java.lang.String> MetadataQueryBuilderFactory.convertField(MetadataService.QueryField fieldName)
           
<T extends java.io.Serializable>
MetadataQueryField<T>
MetadataQueryBuilderFactory.convertField(java.lang.String fieldName)
           
<METADATA_TYPE extends BaseMetadata<METADATA_TYPE>,T extends java.io.Serializable>
MetadataQueryFilter<METADATA_TYPE>
MetadataQueryBuilderFactory.convertFilter(BaseMetadataType<METADATA_TYPE> metadataType, Filter filter)
          Adapter method for converting an old Filter into a new MetadataQueryFilter

 


Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Enterprise Scheduler Service
11g Release 1 (11.1.1.6.3)
E26229-05


Copyright © 2008, 2012 Oracle. All rights reserved.