Tabnine Logo
NullableIntervalDayVector.getAccessor
Code IndexAdd Tabnine to your IDE (free)

How to use
getAccessor
method
in
org.apache.drill.exec.vector.NullableIntervalDayVector

Best Java code snippets using org.apache.drill.exec.vector.NullableIntervalDayVector.getAccessor (Showing top 14 results out of 315)

origin: apache/drill

public Period readPeriod() {
 return vector.getAccessor().getObject(idx());
}

origin: apache/drill

public void read(NullableIntervalDayHolder h) {
 vector.getAccessor().get(idx(), h);
}

origin: apache/drill

public boolean isSet() {
 return !vector.getAccessor().isNull(idx());
}
origin: apache/drill

public Object readObject() {
 return vector.getAccessor().getObject(idx());
}
origin: apache/drill

public void copyFrom(int fromIndex, int thisIndex, NullableIntervalDayVector from){
 final Accessor fromAccessor = from.getAccessor();
 if (!fromAccessor.isNull(fromIndex)) {
  mutator.set(thisIndex, fromAccessor.get(fromIndex));
 }
}
origin: apache/drill

 return getTimeStampVector().getAccessor().getObject(index);
case MinorType.INTERVALDAY_VALUE:
 return getIntervalDayVector().getAccessor().getObject(index);
case MinorType.INTERVAL_VALUE:
 return getIntervalVector().getAccessor().getObject(index);
origin: org.apache.drill.exec/drill-java-exec

public NullableIntervalDayAccessor(NullableIntervalDayVector vector) {
 this.ac = vector.getAccessor();
}
origin: org.apache.drill.exec/drill-java-exec

public void getFieldById(int fieldId, NullableIntervalDayHolder holder){
 ((NullableIntervalDayVector) vectors[fieldId]).getAccessor().get(currentIndex, holder);
}
origin: org.apache.drill.exec/vector

public Period readPeriod() {
 return vector.getAccessor().getObject(idx());
}

origin: org.apache.drill.exec/vector

public void read(NullableIntervalDayHolder h) {
 vector.getAccessor().get(idx(), h);
}

origin: org.apache.drill.exec/vector

public Object readObject() {
 return vector.getAccessor().getObject(idx());
}
origin: org.apache.drill.exec/vector

public boolean isSet() {
 return !vector.getAccessor().isNull(idx());
}
origin: org.apache.drill.exec/vector

public void copyFrom(int fromIndex, int thisIndex, NullableIntervalDayVector from){
 final Accessor fromAccessor = from.getAccessor();
 if (!fromAccessor.isNull(fromIndex)) {
  mutator.set(thisIndex, fromAccessor.get(fromIndex));
 }
}
origin: org.apache.drill.exec/vector

 return getTimeStampVector().getAccessor().getObject(index);
case MinorType.INTERVALDAY_VALUE:
 return getIntervalDayVector().getAccessor().getObject(index);
case MinorType.INTERVAL_VALUE:
 return getIntervalVector().getAccessor().getObject(index);
org.apache.drill.exec.vectorNullableIntervalDayVectorgetAccessor

Popular methods of NullableIntervalDayVector

  • <init>
  • allocateNew
  • allocateNewSafe
  • clear
  • close
  • copyFromSafe
  • exchange
  • getBitsVector
  • getField
  • getMutator
  • getValueCapacity
  • getValuesVector
  • getValueCapacity,
  • getValuesVector,
  • splitAndTransferTo,
  • transferTo

Popular in Java

  • Creating JSON documents from java classes using gson
  • getSharedPreferences (Context)
  • scheduleAtFixedRate (Timer)
  • getResourceAsStream (ClassLoader)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • Top PhpStorm plugins
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