KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > lang > IndexOutOfBoundsException

java.lang
Class IndexOutOfBoundsException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by java.lang.IndexOutOfBoundsException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ArrayIndexOutOfBoundsException, StringIndexOutOfBoundsException
See Also:
Top Examples, Source Code

public IndexOutOfBoundsException()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


[1960]incompatabletypes
By visalacute { at } gmail { dot } com on 2008/03/25 01:16:42  Rate
if ( mtime==null )  
   mtime=""; 
   if ( etime==null )  
   etime=""; 
   String tim=""; 
   if ( mtime.equals ( "selected-selected" )  )  
   mtime+=mtime+","; 
   if ( etime.equals ( "selected-selected" )  )  
   etime+=etime;  
     int time=tim.substring ( 0,tim.length (  ) -1 ) ;


public IndexOutOfBoundsException(String s)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags