public final class MetadataFilters extends Object
Represents a list of the most common types of document metadata.
Modifier and Type | Field and Description |
---|---|
static int |
All
All types of the metadata items.
|
static int |
Author
Author of the document.
|
static int |
Category
Category of the document.
|
static int |
Comments
Comment for the document.
|
static int |
Company
Company of the Author.
|
static int |
ContentStatus
Content status.
|
static int |
ContentType
Content type.
|
static int |
CreatedTime
Created time.
|
static int |
Description
Document's description.
|
static int |
HyperlinkBase
Hyperlink base.
|
static int |
Keywords
Document's keywords.
|
static int |
LastPrinted
Last printed date and time.
|
static int |
LastSavedBy
Last saved by user.
|
static int |
LastSavedTime
Last saved date and time.
|
static int |
Manager
Author's manager name.
|
static int |
NameOfApplication
Name of application where the document was created.
|
static int |
None
Empty filter setting, matches no metadata items.
|
static int |
RevisionNumber
Revision number.
|
static int |
Subject
Subject of the document.
|
static int |
Template
Document template name.
|
static int |
Title
Document title.
|
static int |
TotalEditingTime
Total editing time.
|
static int |
Version
Document's version.
|
Constructor and Description |
---|
MetadataFilters() |
Modifier and Type | Method and Description |
---|---|
static Set<String> |
getNames()
Gets a set with all declared filter types.
|
static int |
getValueByName(String valueName)
Gets value of MetadataFiler by its name.
|
static int |
parse(String values)
Parses a string of comma-delimited MetadataFilers values into an int.
|
static String |
toString(int value)
Saves an integer as a string of comma-delimited MetadataFilers values.
|
public static final int None
Empty filter setting, matches no metadata items.
public static final int Author
Author of the document.
public static final int Category
Category of the document.
public static final int Comments
Comment for the document.
public static final int Company
Company of the Author.
public static final int ContentStatus
Content status.
public static final int CreatedTime
Created time.
public static final int HyperlinkBase
Hyperlink base.
public static final int LastPrinted
Last printed date and time.
public static final int LastSavedBy
Last saved by user.
public static final int LastSavedTime
Last saved date and time.
public static final int NameOfApplication
Name of application where the document was created.
public static final int Manager
Author's manager name.
public static final int RevisionNumber
Revision number.
public static final int Subject
Subject of the document.
public static final int Template
Document template name.
public static final int Title
Document title.
public static final int TotalEditingTime
Total editing time.
public static final int Version
Document's version.
public static final int Description
Document's description.
public static final int Keywords
Document's keywords.
public static final int ContentType
Content type.
public static final int All
All types of the metadata items.
public static Set<String> getNames()
Gets a set with all declared filter types.
public static int getValueByName(String valueName)
Gets value of MetadataFiler by its name.
valueName
- Name of MetadataFilter.public static int parse(String values)
Parses a string of comma-delimited MetadataFilers values into an int.
values
- A string of comma-delimited MetadataFilers values.public static String toString(int value)
Saves an integer as a string of comma-delimited MetadataFilers values.
value
- Value of MetadataFiler.