Klasse TableSourceInfo

java.lang.Object
com.inet.report.database.TableSourceInfo

public class TableSourceInfo extends Object
This class holds information which can be used to create a TableSource.
Seit:
13.0
  • Feldübersicht

    Felder
    Modifikator und Typ
    Feld
    Beschreibung
    static final int
    Shows the database object type is: Stored procedure
    static final int
    Shows the database object type is: System Table
    static final int
    Shows the database object type is: Table
    static final int
    Shows the database object type is: View
  • Konstruktorübersicht

    Konstruktoren
    Konstruktor
    Beschreibung
    TableSourceInfo(@Nullable String catalog, @Nullable String schema, @Nonnull String table, int type)
    Create a new instance for a stored procedure.
  • Methodenübersicht

    Modifikator und Typ
    Methode
    Beschreibung
    @Nullable String
    Get the catalog name or null.
    Get the complete name of this object.
    @Nullable String
    Get the schema name or null.
    Get the object name.
    int
    Get a type of the object (whether the table source is a database table, a stored procedure, etc.)

    Von Klasse geerbte Methoden Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Felddetails

    • TYPE_TABLE

      public static final int TYPE_TABLE
      Shows the database object type is: Table
      Siehe auch:
    • TYPE_SYSTEM_TABLE

      public static final int TYPE_SYSTEM_TABLE
      Shows the database object type is: System Table
      Siehe auch:
    • TYPE_VIEW

      public static final int TYPE_VIEW
      Shows the database object type is: View
      Siehe auch:
    • TYPE_SPROC

      public static final int TYPE_SPROC
      Shows the database object type is: Stored procedure
      Siehe auch:
  • Konstruktordetails

    • TableSourceInfo

      public TableSourceInfo(@Nullable String catalog, @Nullable String schema, @Nonnull String table, int type)
      Create a new instance for a stored procedure.
      Parameter:
      catalog - a catalog name if this is a database object. Can be null.
      schema - a schema/owner name if this is a database object. Can be null.
      table - the object name
      type - the type of this object, one of the constant from this class
      Löst aus:
      IllegalArgumentException - if table is null
      Seit:
      13.0
  • Methodendetails

    • getName

      public String getName()
      Get the complete name of this object.
      Gibt zurück:
      the name
      Seit:
      13.0
    • getCatalog

      public @Nullable String getCatalog()
      Get the catalog name or null.
      Gibt zurück:
      the catalog
      Seit:
      13.0
    • getSchema

      public @Nullable String getSchema()
      Get the schema name or null.
      Gibt zurück:
      the schema
      Seit:
      13.0
    • getTable

      public String getTable()
      Get the object name. This is the short name.
      Gibt zurück:
      the name
      Seit:
      13.0
    • getType

      public int getType()
      Get a type of the object (whether the table source is a database table, a stored procedure, etc.)
      Gibt zurück:
      the type
      Seit:
      13.0
      Siehe auch: