Codota Logo
VariableSimpleIF.getFullName
Code IndexAdd Codota 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)

  • Common ways to obtain VariableSimpleIF
private void myMethod () {
VariableSimpleIF v =
  • Codota IconIterator iterator;(VariableSimpleIF) iterator.next()
  • Codota IconHashMap hashMap;Object key;(VariableSimpleIF) hashMap.get(key)
  • Codota IconTrajectoryObsDataset trajectoryObsDataset;String str;trajectoryObsDataset.getDataVariable(str)
  • Smart code suggestions by Codota
}
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

  • Creating JSON documents from java classes using gson
  • notifyDataSetChanged (ArrayAdapter)
  • setScale (BigDecimal)
  • startActivity (Activity)
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate(i
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Locale (java.util)
    A Locale object represents a specific geographical, political, or cultural region. An operation that
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now