public class CmsFolder extends CmsResource
A folder resource is a CmsResource object that can contain sub-resources.
STATE_CHANGED, STATE_DELETED, STATE_KEEP, STATE_NEW, STATE_UNCHANGED, TEMP_FILE_PREFIX
构造器和说明 |
---|
CmsFolder(CmsResource resource)
Constructor, creates a new CmsFolder Object from the given CmsResource.
|
CmsFolder(CmsUUID structureId,
CmsUUID resourceId,
java.lang.String path,
int type,
int flags,
CmsUUID projectId,
CmsResourceState state,
long dateCreated,
CmsUUID userCreated,
long dateLastModified,
CmsUUID userLastModified,
long dateReleased,
long dateExpired,
int version)
Constructor, creates a new CmsFolder object.
|
限定符和类型 | 方法和说明 |
---|---|
java.lang.Object |
clone()
Returns a clone of this Objects instance.
|
long |
getDateContent()
A folder does always have the content date
-1 . |
int |
getLength()
A folder does always have length
-1 . |
boolean |
isFile()
Since this is a folder, not a file,
false is always returned. |
boolean |
isFolder()
Since this is a folder,
true is always returned. |
static boolean |
isFolderSize(long size)
Returns
true if the given resource size describes a folder type. |
static boolean |
isFolderType(int typeId)
Returns
true if the given resource type id describes a folder type. |
static boolean |
isFolderType(java.lang.String typeName)
Returns
true if the given resource type name describes a folder type. |
boolean |
isTemporaryFile() |
getFolderPath, getName, getParentFolder, getPathLevel, getPathPart, isFolder, isTemporaryFileName
public CmsFolder(CmsResource resource)
resource
- the base resource object to create a folder frompublic CmsFolder(CmsUUID structureId, CmsUUID resourceId, java.lang.String path, int type, int flags, CmsUUID projectId, CmsResourceState state, long dateCreated, CmsUUID userCreated, long dateLastModified, CmsUUID userLastModified, long dateReleased, long dateExpired, int version)
structureId
- the id of this resources structure recordresourceId
- the id of this resources resource recordpath
- the filename of this resoucetype
- the type of this resourceflags
- the flags of this resourceprojectId
- the project id this resource was last modified instate
- the state of this resourcedateCreated
- the creation date of this resourceuserCreated
- the id of the user who created this resourcedateLastModified
- the date of the last modification of this resourceuserLastModified
- the id of the user who did the last modification of this resource * @param size the size of the file content of this resourcedateReleased
- the release date of this resourcedateExpired
- the expiration date of this resourceversion
- the version number of this resourcepublic static final boolean isFolderSize(long size)
true
if the given resource size describes a folder type.
This is true
in case size < 0
.
size
- the resource size to checkpublic static final boolean isFolderType(int typeId)
true
if the given resource type id describes a folder type.typeId
- the resource type id to checkpublic static final boolean isFolderType(java.lang.String typeName)
true
if the given resource type name describes a folder type.typeName
- the resource type name to checkpublic java.lang.Object clone()
clone
在类中 java.lang.Object
public long getDateContent()
-1
.org.opencms.file.CmsResource#getDateContent()
public int getLength()
-1
.org.opencms.file.CmsResource#getLength()
public boolean isFile()
false
is always returned.org.opencms.file.CmsResource#isFile()
public boolean isFolder()
true
is always returned.org.opencms.file.CmsResource#isFolder()
public boolean isTemporaryFile()
org.opencms.file.CmsResource#isTemporaryFile()