derivedattribute.java

来自「数据仓库展示程序」· Java 代码 · 共 48 行

JAVA
48
字号
/*
 * Java(TM) OLAP Interface
 */
package javax.olap.query.derivedattribute;



public interface DerivedAttribute
extends javax.olap.query.querycoremodel.NamedObject, javax.olap.query.derivedattribute.DerivedAttributeComponent {

    // ------------------------------------------------
    // -----   Attribute-Generated                -----
    // ------------------------------------------------

  public javax.olap.query.enumerations.DAOperator getOperator()
    throws javax.olap.OLAPException;

  public void setOperator( javax.olap.query.enumerations.DAOperator value )
    throws javax.olap.OLAPException;

    // ------------------------------------------------
    // -----   Reference-Generated                -----
    // ------------------------------------------------

  public java.util.List getComponent()
    throws javax.olap.OLAPException;

  public javax.olap.query.querycoremodel.DimensionView getDimensionView()
    throws javax.olap.OLAPException;

  public void setDimensionView( javax.olap.query.querycoremodel.DimensionView value )
    throws javax.olap.OLAPException;

    // ------------------------------------------------
    // -----   Interface Operations               -----
    // ------------------------------------------------

  public javax.olap.query.derivedattribute.DerivedAttributeComponent createComponent( javax.olap.query.enumerations.DerivedAttributeComponentType componentType )
    throws javax.olap.OLAPException;

  public javax.olap.query.derivedattribute.DerivedAttributeComponent createComponentBefore( javax.olap.query.enumerations.DerivedAttributeComponentType componentType, javax.olap.query.derivedattribute.DerivedAttributeComponent member )
    throws javax.olap.OLAPException;

  public javax.olap.query.derivedattribute.DerivedAttributeComponent createComponentAfter( javax.olap.query.enumerations.DerivedAttributeComponentType componentType, javax.olap.query.derivedattribute.DerivedAttributeComponent member )
    throws javax.olap.OLAPException;

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?