public enum PropertyType extends Enum<PropertyType>
Enum Constant and Description |
---|
ArrayOfContextIDs
The property contains an array of CompactID structures in the ObjectSpaceObjectPropSet.ContextIDs.body
stream field.
|
ArrayOfObjectIDs
The property contains an array of CompactID structures in the ObjectSpaceObjectPropSet.OSIDs.body stream field.
|
ArrayOfObjectSpaceIDs
The property contains an array of CompactID structures in the ObjectSpaceObjectPropSet.OSIDs.body stream field.
|
ArrayOfPropertyValues
The property contains a prtArrayOfPropertyValues structure in the PropertySet.rgData stream field.
|
Bool
The property is a Boolean value specified by boolValue.
|
ContextID
The property contains one CompactID in the ObjectSpaceObjectPropSet.ContextIDs.body stream field.
|
EightBytesOfData
The property contains 8 bytes of data in the PropertySet.rgData stream field.
|
FourBytesOfData
The property contains 4 bytes of data in the PropertySet.rgData stream field.
|
FourBytesOfLengthFollowedByData
The property contains a prtFourBytesOfLengthFollowedByData in the PropertySet.rgData stream field.
|
NoData
The property contains no data.
|
ObjectID
The property contains one CompactID in the ObjectSpaceObjectPropSet.OIDs.body stream field.
|
ObjectSpaceID
The property contains one CompactID structure in the ObjectSpaceObjectPropSet.OSIDs.body stream field.
|
OneByteOfData
The property contains 1 byte of data in the PropertySet.rgData stream field.
|
PropertySet
The property contains a child PropertySet structure in the PropertySet.rgData stream field
of the parent PropertySet.
|
TwoBytesOfData
The property contains 2 bytes of data in the PropertySet.rgData stream field.
|
Modifier and Type | Method and Description |
---|---|
static PropertyType |
fromIntVal(int intVal) |
int |
getIntVal() |
static PropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyType NoData
public static final PropertyType Bool
public static final PropertyType OneByteOfData
public static final PropertyType TwoBytesOfData
public static final PropertyType FourBytesOfData
public static final PropertyType EightBytesOfData
public static final PropertyType FourBytesOfLengthFollowedByData
public static final PropertyType ObjectID
public static final PropertyType ArrayOfObjectIDs
public static final PropertyType ObjectSpaceID
public static final PropertyType ArrayOfObjectSpaceIDs
public static final PropertyType ContextID
public static final PropertyType ArrayOfContextIDs
public static final PropertyType ArrayOfPropertyValues
public static final PropertyType PropertySet
public static PropertyType[] values()
for (PropertyType c : PropertyType.values()) System.out.println(c);
public static PropertyType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static PropertyType fromIntVal(int intVal)
public int getIntVal()
Copyright © 2007–2022 The Apache Software Foundation. All rights reserved.