Tabnine Logo
ArrayTable$Representation.permute
Code IndexAdd Tabnine to your IDE (free)

How to use
permute
method
in
net.hydromatic.optiq.impl.clone.ArrayTable$Representation

Best Java code snippets using net.hydromatic.optiq.impl.clone.ArrayTable$Representation.permute (Showing top 4 results out of 315)

origin: net.hydromatic/optiq

public Object permute(Object dataSet, int[] sources) {
 final Pair<Object, Comparable[]> pair =
   (Pair<Object, Comparable[]>) dataSet;
 Object codes = pair.left;
 Comparable[] codeValues = pair.right;
 return Pair.of(representation.permute(codes, sources), codeValues);
}
origin: net.hydromatic/optiq

public Column permute(int[] sources) {
 return new Column(
   representation,
   representation.permute(dataSet, sources),
   cardinality);
}
origin: org.apache.optiq/optiq-core

public Object permute(Object dataSet, int[] sources) {
 final Pair<Object, Comparable[]> pair =
   (Pair<Object, Comparable[]>) dataSet;
 Object codes = pair.left;
 Comparable[] codeValues = pair.right;
 return Pair.of(representation.permute(codes, sources), codeValues);
}
origin: org.apache.optiq/optiq-core

public Column permute(int[] sources) {
 return new Column(
   representation,
   representation.permute(dataSet, sources),
   cardinality);
}
net.hydromatic.optiq.impl.cloneArrayTable$Representationpermute

Javadoc

Creates a data set that is the same as a given data set but re-ordered.

Popular methods of ArrayTable$Representation

  • freeze
    Converts a value set into a compact representation. If sources is not null, permutes.
  • getInt
  • getObject
  • getType
    Returns the representation type.
  • size
    Returns the number of elements in a data set. (Some representations return the capacity, which may b
  • toString
    Converts a data set to a string.

Popular in Java

  • Reactive rest calls using spring rest template
  • runOnUiThread (Activity)
  • addToBackStack (FragmentTransaction)
  • getSystemService (Context)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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