Tabnine Logo
DataSetMetadata.getUUID
Code IndexAdd Tabnine to your IDE (free)

How to use
getUUID
method
in
org.dashbuilder.dataset.DataSetMetadata

Best Java code snippets using org.dashbuilder.dataset.DataSetMetadata.getUUID (Showing top 10 results out of 315)

origin: org.dashbuilder/dashbuilder-dataset-client

private DataSetPushHandler(DataSetMetadata metadata) {
  this.dataSetMetadata = metadata;
  pushRequestMap.put(dataSetMetadata.getUUID(),
            this);
  dataSetPushingEvent.fire(new DataSetPushingEvent(dataSetMetadata));
}
origin: org.dashbuilder/dashbuilder-dataset-client

public void notFound() {
  pushRequestMap.remove(dataSetMetadata.getUUID());
  for (DataSetLookupListenerPair pair : listenerList) {
    pair.listener.notFound();
  }
}
origin: kiegroup/appformer

public void notFound() {
  pushRequestMap.remove(dataSetMetadata.getUUID());
  for (DataSetLookupListenerPair pair : listenerList) {
    pair.listener.notFound();
  }
}
origin: kiegroup/appformer

private DataSetPushHandler(DataSetMetadata metadata) {
  this.dataSetMetadata = metadata;
  pushRequestMap.put(dataSetMetadata.getUUID(),
            this);
  dataSetPushingEvent.fire(new DataSetPushingEvent(dataSetMetadata));
}
origin: org.kie.soup/kie-soup-dataset-sql

protected int _assertColumnExists(DataSetMetadata metadata, String columnId) {
  for (int i = 0; i < metadata.getNumberOfColumns(); i++) {
    if (metadata.getColumnId(i).equalsIgnoreCase(columnId)) {
      return i;
    }
  }
  throw new RuntimeException("Column '" + columnId +
      "' not found in data set: " + metadata.getUUID());
}
origin: org.dashbuilder/dashbuilder-dataset-sql

protected int _assertColumnExists(DataSetMetadata metadata, String columnId) {
  for (int i = 0; i < metadata.getNumberOfColumns(); i++) {
    if (metadata.getColumnId(i).equalsIgnoreCase(columnId)) {
      return i;
    }
  }
  throw new RuntimeException("Column '" + columnId +
      "' not found in data set: " + metadata.getUUID());
}
origin: org.dashbuilder/dashbuilder-dataset-client

public void callback(DataSet dataSet) {
  pushRequestMap.remove(dataSetMetadata.getUUID());
  clientDataSetManager.registerDataSet(dataSet);
  dataSetPushOkEvent.fire(new DataSetPushOkEvent(dataSetMetadata));
  for (DataSetLookupListenerPair pair : listenerList) {
    DataSet result = clientDataSetManager.lookupDataSet(pair.lookup);
    pair.listener.callback(result);
  }
}
origin: kiegroup/appformer

public void callback(DataSet dataSet) {
  pushRequestMap.remove(dataSetMetadata.getUUID());
  clientDataSetManager.registerDataSet(dataSet);
  dataSetPushOkEvent.fire(new DataSetPushOkEvent(dataSetMetadata));
  for (DataSetLookupListenerPair pair : listenerList) {
    DataSet result = clientDataSetManager.lookupDataSet(pair.lookup);
    pair.listener.callback(result);
  }
}
origin: org.dashbuilder/dashbuilder-dataset-api

public DataSetLookup newDataSetLookup(DataSetMetadata metatada) {
  DataSetLookupBuilder<DataSetLookupBuilderImpl> builder = DataSetFactory.newDataSetLookupBuilder();
  builder.dataset(metatada.getUUID());
origin: org.kie.soup/kie-soup-dataset-api

public DataSetLookup newDataSetLookup(DataSetMetadata metatada) {
  DataSetLookupBuilder<DataSetLookupBuilderImpl> builder = DataSetLookupFactory.newDataSetLookupBuilder();
  builder.dataset(metatada.getUUID());
org.dashbuilder.datasetDataSetMetadatagetUUID

Javadoc

The unique identifier for this data set.

Popular methods of DataSetMetadata

  • getColumnId
    Get the identifier of the specified column.
  • getNumberOfColumns
    Get the number of columns.
  • getColumnType
    Get the type of the specified column.
  • getNumberOfRows
    Get the number of rows.
  • getEstimatedSize
    Get the estimated size in bytes.
  • getColumnIds
    Get the column ids
  • getDefinition
    Get the definition this data set has been created from. Is null for manually created data set instan

Popular in Java

  • Start an intent from android
  • onCreateOptionsMenu (Activity)
  • setContentView (Activity)
  • addToBackStack (FragmentTransaction)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • BoxLayout (javax.swing)
  • IsNull (org.hamcrest.core)
    Is the value null?
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now