Package org.apache.openjpa.lib.meta
Class ResourceMetaDataIterator
java.lang.Object
org.apache.openjpa.lib.meta.ResourceMetaDataIterator
- All Implemented Interfaces:
MetaDataIterator
,Closeable
Iterator over a given metadata resource.
- Author:
- Abe White
-
Constructor Summary
ConstructorDescriptionConstructor; supply the resource to parse.ResourceMetaDataIterator
(String rsrc, ClassLoader loader) Constructor; supply the resource to parse. -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Close the resources used by this iterator.getFile()
Return the last-iterated metadata resource content as a file, or null if not an extant file.Return the last-iterated metadata resource content as a stream.boolean
hasNext()
Return whether there is another resource to iterate over.next()
Return the next metadata resource.
-
Constructor Details
-
ResourceMetaDataIterator
Constructor; supply the resource to parse.- Throws:
IOException
-
ResourceMetaDataIterator
Constructor; supply the resource to parse.- Throws:
IOException
-
-
Method Details
-
hasNext
public boolean hasNext()Description copied from interface:MetaDataIterator
Return whether there is another resource to iterate over.- Specified by:
hasNext
in interfaceMetaDataIterator
-
next
Description copied from interface:MetaDataIterator
Return the next metadata resource.- Specified by:
next
in interfaceMetaDataIterator
-
getInputStream
Description copied from interface:MetaDataIterator
Return the last-iterated metadata resource content as a stream.- Specified by:
getInputStream
in interfaceMetaDataIterator
- Throws:
IOException
-
getFile
Description copied from interface:MetaDataIterator
Return the last-iterated metadata resource content as a file, or null if not an extant file.- Specified by:
getFile
in interfaceMetaDataIterator
- Throws:
IOException
-
close
public void close()Description copied from interface:MetaDataIterator
Close the resources used by this iterator.- Specified by:
close
in interfaceCloseable
- Specified by:
close
in interfaceMetaDataIterator
-