Package org.olap4j.metadata
Interface Property
-
- All Superinterfaces:
MetadataElement
- All Known Implementing Classes:
Property.StandardCellProperty
,Property.StandardMemberProperty
public interface Property extends MetadataElement
- Since:
- Aug 23, 2006
- Author:
- jhyde
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Property.ContentType
Enumeration of the types of aProperty
.static class
Property.StandardCellProperty
Enumeration of the system properties available for everyCell
.static class
Property.StandardMemberProperty
Enumeration of the system properties available for everyMember
.static class
Property.TypeFlag
Enumeration of aspects of the type of a Property.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Property.ContentType
getContentType()
Returns the content type of this Property.Datatype
getDatatype()
Returns the datatype of this Property.java.util.Set<Property.TypeFlag>
getType()
Returns a set of flags which describe the type of this Property.-
Methods inherited from interface org.olap4j.metadata.MetadataElement
getCaption, getDescription, getName, getUniqueName, isVisible
-
-
-
-
Method Detail
-
getDatatype
Datatype getDatatype()
Returns the datatype of this Property.- Returns:
- datatype of this Property
-
getType
java.util.Set<Property.TypeFlag> getType()
Returns a set of flags which describe the type of this Property.- Returns:
- type of this Property
-
getContentType
Property.ContentType getContentType()
Returns the content type of this Property.- Returns:
- content type
-
-