Java Doc for SourceTable.java in » IDE-Netbeans » etl.project » org » netbeans » modules » sql » framework » model » Java Source Code / Java DocumentationJava Source Code and Java Documentation
Java Source Code / Java Documentation
1.
6.0 JDK Core
2.
6.0 JDK Modules
3.
6.0 JDK Modules com.sun
4.
6.0 JDK Modules com.sun.java
5.
6.0 JDK Modules sun
6.
6.0 JDK Platform
7.
Ajax
8.
Apache Harmony Java SE
9.
Aspect oriented
10.
Authentication Authorization
11.
Blogger System
12.
Build
13.
Byte Code
14.
Cache
15.
Chart
16.
Chat
17.
Code Analyzer
18.
Collaboration
19.
Content Management System
20.
Database Client
21.
Database DBMS
22.
Database JDBC Connection Pool
23.
Database ORM
24.
Development
25.
EJB Server geronimo
26.
EJB Server GlassFish
27.
EJB Server JBoss 4.2.1
28.
EJB Server resin 3.1.5
29.
ERP CRM Financial
30.
ESB
31.
Forum
32.
GIS
33.
Graphic Library
34.
Groupware
35.
HTML Parser
36.
IDE
37.
IDE Eclipse
38.
IDE Netbeans
39.
Installer
40.
Internationalization Localization
41.
Inversion of Control
42.
Issue Tracking
43.
J2EE
44.
JBoss
45.
JMS
46.
JMX
47.
Library
48.
Mail Clients
49.
Net
50.
Parser
51.
PDF
52.
Portal
53.
Profiler
54.
Project Management
55.
Report
56.
RSS RDF
57.
Rule Engine
58.
Science
59.
Scripting
60.
Search Engine
61.
Security
62.
Sevlet Container
63.
Source Control
64.
Swing Library
65.
Template Engine
66.
Test Coverage
67.
Testing
68.
UML
69.
Web Crawler
70.
Web Framework
71.
Web Mail
72.
Web Server
73.
Web Services
74.
Web Services apache cxf 2.0.1
75.
Web Services AXIS2
76.
Wiki Engine
77.
Workflow Engines
78.
XML
79.
XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation
»
IDE Netbeans
»
etl.project
»
org.netbeans.modules.sql.framework.model
Source Cross Reference
Class Diagram
Java Document (Java Doc)
org.netbeans.modules.sql.framework.model
.SourceTable
All known Subclasses:
org.netbeans.modules.sql.framework.model.impl
.SourceTableImpl
,
SourceTable
public
interface SourceTable extends
SQLDBTable
,
Cloneable
,
Comparable
,
SQLVisitedObject
(Code)
Defines methods required for a source table representation.
author:
Jonathan Giron
version:
$Revision$
Field Summary
final
public
static
String
DATA_VALIDATION_CONDITION
final
public
static
String
EXTRACTION_CONDITION
Method Summary
public
SQLCondition
getDataValidationCondition
()
get the data validation condition.
public
String
getDataValidationConditionText
()
Gets the validation condition text.
public
SQLCondition
getExtractionCondition
()
public
String
getExtractionConditionText
()
public
String
getExtractionType
()
public
SQLGroupBy
getSQLGroupBy
()
public
String
getTemporaryTableName
()
public
boolean
isDropStagingTable
()
public
boolean
isSelectDistinct
()
public
boolean
isTruncateStagingTable
()
public
boolean
isUsedInJoin
()
public
boolean
isUsingFullyQualifiedName
()
Indicates whether the fully-qualified form should be used whenever one resolves this table's name.
public
void
setBatchSize
(int newsize)
public
void
setDataValidationCondition
(
SQLCondition
condition)
set the data validation condition.
public
void
setDataValidationConditionText
(
String
text)
Sets the validation condition text.
public
void
setDropStagingTable
(boolean drop)
public
void
setExtractionCondition
(
SQLCondition
cond)
public
void
setExtractionConditionText
(
String
cond)
public
void
setExtractionType
(
String
eType)
public
void
setSQLGroupBy
(
SQLGroupBy
groupBy)
public
void
setSelectDistinct
(boolean distinct)
public
void
setTemporaryTableName
(
String
tName)
public
void
setTruncateStagingTable
(boolean truncate)
public
void
setUsedInJoin
(boolean used)
public
void
setUsingFullyQualifiedName
(boolean usesFullName)
public
List
validate
()
Field Detail
DATA_VALIDATION_CONDITION
final
public
static
String
DATA_VALIDATION_CONDITION
(Code)
EXTRACTION_CONDITION
final
public
static
String
EXTRACTION_CONDITION
(Code)
extraction condition tag
Method Detail
getDataValidationCondition
public
SQLCondition
getDataValidationCondition()
(Code)
get the data validation condition. data validation condition.
getDataValidationConditionText
public
String
getDataValidationConditionText()
(Code)
Gets the validation condition text.
Parameters:
cond - condition text
getExtractionCondition
public
SQLCondition
getExtractionCondition()
(Code)
get the extraction condition SQLCondition to apply while doing extraction
getExtractionConditionText
public
String
getExtractionConditionText()
(Code)
get the extraction conidition text sql condition
getExtractionType
public
String
getExtractionType()
(Code)
get extraction type extraction type
getSQLGroupBy
public
SQLGroupBy
getSQLGroupBy()
(Code)
get report group by object SQLGroupBy
getTemporaryTableName
public
String
getTemporaryTableName()
(Code)
get temporary table name temp table name
isDropStagingTable
public
boolean isDropStagingTable()
(Code)
get whether to Drop Staging table before extraction whether to drop staging table
isSelectDistinct
public
boolean isSelectDistinct()
(Code)
check if distinct rows of a column needs to be selected distinct
isTruncateStagingTable
public
boolean isTruncateStagingTable()
(Code)
get whether to truncate Staging table before extraction whether to truncate staging table
isUsedInJoin
public
boolean isUsedInJoin()
(Code)
determine whether this table is used in a join view boolean
isUsingFullyQualifiedName
public
boolean isUsingFullyQualifiedName()
(Code)
Indicates whether the fully-qualified form should be used whenever one resolves this table's name. true if fully-qualified form should be used, false otherwise
setBatchSize
public
void setBatchSize(int newsize)
(Code)
setDataValidationCondition
public
void setDataValidationCondition(
SQLCondition
condition)
(Code)
set the data validation condition.
Parameters:
condition - data validation condition
setDataValidationConditionText
public
void setDataValidationConditionText(
String
text)
(Code)
Sets the validation condition text.
Parameters:
cond - condition text
setDropStagingTable
public
void setDropStagingTable(boolean drop)
(Code)
Drop staging table before extraction
Parameters:
whether - to drop temp table
setExtractionCondition
public
void setExtractionCondition(
SQLCondition
cond)
(Code)
set the extraction condition
Parameters:
cond - filter to appy while extraction
setExtractionConditionText
public
void setExtractionConditionText(
String
cond)
(Code)
set the extraction condition text
Parameters:
cond - extraction condition text
setExtractionType
public
void setExtractionType(
String
eType)
(Code)
set the extraction type
Parameters:
eType - extraction type
setSQLGroupBy
public
void setSQLGroupBy(
SQLGroupBy
groupBy)
(Code)
set group by object
Parameters:
groupBy - - SQLGroupBy
setSelectDistinct
public
void setSelectDistinct(boolean distinct)
(Code)
set wehether to select distinct rows of a column
Parameters:
distinct - distinct
setTemporaryTableName
public
void setTemporaryTableName(
String
tName)
(Code)
set the temporary table name
Parameters:
tName - temp table name
setTruncateStagingTable
public
void setTruncateStagingTable(boolean truncate)
(Code)
Truncate staging table before extraction
Parameters:
whether - to truncate temp table
setUsedInJoin
public
void setUsedInJoin(boolean used)
(Code)
set whether this table is used in join view
Parameters:
used - boolean
setUsingFullyQualifiedName
public
void setUsingFullyQualifiedName(boolean usesFullName)
(Code)
validate
public
List
validate()
(Code)
do source table validation list of validation infos
www.java2java.com
|
Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.