Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Data Visualization Components
11g Release 1 (11.1.1)

E12063-03


oracle.dss.util.xdo.template.flash
Class BMSearch

java.lang.Object
  extended by oracle.dss.util.xdo.template.flash.BMSearch


public class BMSearch
extends java.lang.Object

BM search routines


Constructor Summary
BMSearch()
           

 

Method Summary
static boolean search(java.io.InputStream in, java.lang.String keyword)
          Search keyword in the specified input stream and returns true if the specified keyword is found.
static boolean search(RandomAccessFileOrMemory in, java.lang.String keyword)
          Search keyword in the specified input stream and returns true if the specified keyword is found.

 

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Constructor Detail

BMSearch

public BMSearch()

Method Detail

search

public static boolean search(RandomAccessFileOrMemory in,
                             java.lang.String keyword)
                      throws java.io.IOException
Search keyword in the specified input stream and returns true if the specified keyword is found. If the keyword is found, the input RandomAccessFile will point to just after the keyword. [ before ] .....keyword..... | in [ after ] .....keyword..... | in BM method like algorithm is used to search. Note) This mothod works only when the keyword is ascii string
Parameters:
in -
keyword - keyword must be ISO-8859-1
Returns:
Throws:
java.io.IOException

search

public static boolean search(java.io.InputStream in,
                             java.lang.String keyword)
                      throws java.io.IOException
Search keyword in the specified input stream and returns true if the specified keyword is found. If the keyword is found, the input RandomAccessFile will point to just after the keyword. [ before ] .....keyword..... | in [ after ] .....keyword..... | in BM method like algorithm is used to search. Note) This mothod works only when the keyword is ascii string
Parameters:
in -
keyword - keyword must be ISO-8859-1
Returns:
Throws:
java.io.IOException

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Data Visualization Components
11g Release 1 (11.1.1)

E12063-03


Copyright © 1997, 2009, Oracle. All rights reserved.