接口 ArchiveEntry
-
public interface ArchiveEntryRepresent an entry in the archive.- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 StringgetName()Get the entry's nameStringgetNameWithinArchive()Get the relative name of the entry within the archive.InputStreamAccessgetStreamAccess()Get access to the stream for the entry
-
-
-
方法详细资料
-
getName
String getName()
Get the entry's name- 返回:
- The name
-
getNameWithinArchive
String getNameWithinArchive()
Get the relative name of the entry within the archive. Typically what we are looking for here is the ClassLoader resource lookup name.- 返回:
- The name relative to the archive root
-
getStreamAccess
InputStreamAccess getStreamAccess()
Get access to the stream for the entry- 返回:
- Obtain stream access to the entry
-
-