public interface Descriptors
javax.jcr.Repository
Modifier and Type | Method and Description |
---|---|
java.lang.String[] |
getKeys()
Returns a string array holding all descriptor keys available for this
implementation, both the standard descriptors defined by the string
constants in this interface and any implementation-specific descriptors.
|
Value |
getValue(java.lang.String key)
The value of a single-value descriptor is found by passing the key for
that descriptor to this method.
|
Value[] |
getValues(java.lang.String key)
The value array of a multi-value descriptor is found by passing the key
for that descriptor to this method.
|
boolean |
isSingleValueDescriptor(java.lang.String key)
Returns
true if key is a valid single-value
descriptor; otherwise returns false |
boolean |
isStandardDescriptor(java.lang.String key)
Returns
true if key is a standard descriptor
defined by the string constants in this interface and false
if it is either a valid implementation-specific key or not a valid key. |
java.lang.String[] getKeys()
getValue(String key)
and
getValues(String key)
to query information about this
repository implementation.boolean isStandardDescriptor(java.lang.String key)
true
if key
is a standard descriptor
defined by the string constants in this interface and false
if it is either a valid implementation-specific key or not a valid key.key
- a descriptor key.key
is a standard descriptor.boolean isSingleValueDescriptor(java.lang.String key)
true
if key
is a valid single-value
descriptor; otherwise returns false
key
- a descriptor key.Value getValue(java.lang.String key)
key
is the key of a
multi-value descriptor or not a valid key this method returns
null
.key
- a descriptor key.Value[] getValues(java.lang.String key)
key
is the key of a
single-value descriptor then this method returns that value as an array
of size one. If key
is not a valid key this method returns
null
.key
- a descriptor key."Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"