x_flattened_column Data Type

Java class for x_flattened_column complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="x_flattened_column">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <choice>
         <element name="measure" type="{uri:lens:cube:0.1}x_measure"/>
         <element name="expression" type="{uri:lens:cube:0.1}x_expr_column"/>
         <element name="dim_attribute" type="{uri:lens:cube:0.1}x_dim_attribute"/>
       </choice>
       <attribute name="table_name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="chain_name" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 

Namespace
uri:lens:cube:0.1
Schema
ns2.xsd
Properties
name data type type namespace min/max occurs description
chain_name string attribute 0/1  
table_name string attribute 1/1  
dim_attribute x_dim_attribute element ns2 0/1  
expression x_expr_column element ns2 0/1  
measure x_measure element ns2 0/1  

Example

<x----- chain_name="..." table_name="..." xmlns="uri:lens:cube:0.1">
  <measure _type="..." default_aggr="..." description="..." display_string="..." end_time="..." format_string="..." max="..." min="..." name="..." start_time="..." unit="...">
    <tags/>
  </measure>
  <expression _type="..." description="..." display_string="..." name="...">
    <expr_spec end_time="..." expr="..." start_time="..."/>
    <tags/>
  </expression>
  <dim_attribute _type="..." description="..." display_string="..." end_time="..." name="..." num_distinct_values="..." start_time="...">
    <chain_ref_column chain_name="..." dest_table="..." ref_col="..."/>
    <hierarchy>
      <dim_attribute/>
    </hierarchy>
    <values>...</values>
    <tags/>
  </dim_attribute>
</x----->