congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
VariableSimpleIF.getFullName
Code IndexAdd Tabnine to your IDE (free)

How to use
getFullName
method
in
ucar.nc2.VariableSimpleIF

Best Java code snippets using ucar.nc2.VariableSimpleIF.getFullName (Showing top 12 results out of 315)

origin: edu.ucar/netcdf

public String getFullName() { return v.getFullName(); }
public String getName() { return v.getFullName(); }
origin: edu.ucar/netcdf

public String getName() { return v.getFullName(); }
public String getShortName() { return v.getShortName(); }
origin: edu.ucar/cdm

public String getName() { return v.getFullName(); }
public String getShortName() { return v.getShortName(); }
origin: Unidata/thredds

public String getFullName() { return v.getFullName(); }
public String getName() { return v.getFullName(); }
origin: edu.ucar/cdm

public String getFullName() { return v.getFullName(); }
public String getName() { return v.getFullName(); }
origin: Unidata/thredds

public String getName() { return v.getFullName(); }
public String getShortName() { return v.getShortName(); }
origin: Unidata/thredds

 @Override
 public int compareTo(@Nonnull VariableSimpleIF o) {
  return getFullName().compareTo(o.getFullName());
 }
}
origin: edu.ucar/netcdf

/**
 * Sort by name
 */
 public int compareTo(VariableSimpleIF o) {
  return getFullName().compareTo(o.getFullName());
 }
 public String getName() { return this.name; }
origin: edu.ucar/cdm

/**
 * Sort by name
 */
 public int compareTo(VariableSimpleIF o) {
  return getFullName().compareTo(o.getFullName());
 }
 public String getName() { return this.name; }
origin: Unidata/thredds

/**
 * Sort by name
 */
public int compareTo(VariableSimpleIF o) {
 return getFullName().compareTo(o.getFullName());
}
origin: Unidata/thredds

private void addDataVariables(List<VariableSimpleIF> list, Table t) {
 if (t.parent != null) addDataVariables(list, t.parent);
 for (VariableSimpleIF col : t.cols.values()) {
  if (t.nondataVars.contains(col.getFullName())) continue;
  if (t.nondataVars.contains(col.getShortName())) continue;  // fishy
  list.add(col);
 }
}
origin: edu.ucar/cdm

private void addDataVariables(List<VariableSimpleIF> list, Table t) {
 if (t.parent != null) addDataVariables(list, t.parent);
 for (VariableSimpleIF col : t.cols.values()) {
  if (t.nondataVars.contains(col.getFullName())) continue;
  if (t.nondataVars.contains(col.getShortName())) continue;  // fishy
  list.add(col);
 }
}
ucar.nc2VariableSimpleIFgetFullName

Javadoc

full, backslash escaped name of the data Variable

Popular methods of VariableSimpleIF

  • getShortName
    short name of the data Variable
  • getDescription
    description of the Variable
  • getUnitsString
    Units of the Variable. These should be udunits compatible if possible
  • findAttributeIgnoreCase
    find the attribute for the variable with the given name, ignoring case.
  • getAttributes
    Attributes for the variable.
  • getDataType
    Variable's data type
  • getDimensions
    Dimension List. empty for a scalar variable.
  • getRank
    Variable rank
  • getShape
    Variable shape

Popular in Java

  • Parsing JSON documents to java classes using gson
  • onCreateOptionsMenu (Activity)
  • getSystemService (Context)
  • getContentResolver (Context)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • JFileChooser (javax.swing)
  • Top 12 Jupyter Notebook Extensions
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