Tabnine Logo
Taxon$Builder.withRank
Code IndexAdd Tabnine to your IDE (free)

How to use
withRank
method
in
it.tidalwave.bluebill.taxonomy.Taxon$Builder

Best Java code snippets using it.tidalwave.bluebill.taxonomy.Taxon$Builder.withRank (Showing top 7 results out of 315)

origin: it.tidalwave.bluebill/it-tidalwave-bluebill-taxonomy-birds-ebn-italia-2011

  log.info("**************** ORDER: *{}*", orderName);
  orderPath = "/Animalia/Chordata/Aves/" + orderName;
  order = findOrCreateSubTaxon(aves, idPrefix, orderPath).withRank(ORDER).
                              withScientificName(orderName).
                              withSpecificEpythet(orderName).
  log.info("**************** FAMILY: *{}*", familyName);
  familyPath = orderPath + "/" + familyName;
  family = findOrCreateSubTaxon(order, idPrefix, familyPath).withRank(FAMILY).
                                withScientificName(familyName).
                                withSpecificEpythet(familyName).
final Taxon genus = findOrCreateSubTaxon(family, idPrefix, genusPath).withRank(GENUS).
                                   withScientificName(genusName).
                                   withSpecificEpythet(genusName).
                                   build();
final Taxon species = findOrCreateSubTaxon(genus, idPrefix, speciesPath).withRank(SPECIES).
                                     withScientificName(genusName + " " + speciesName).
                                     withSpecificEpythet(speciesName).
origin: it.tidalwave.bluebill/it-tidalwave-bluebill-taxonomy-birds-birdsofindia-2009

order = findOrCreateSubTaxon(aves, idPrefix, orderPath).withRank(ORDER).
                            withScientificName(orderName).
                            withSpecificEpythet(orderName).
log.info("**************** FAMILY: *{}*", familyName);
familyPath = orderPath + "/" + familyName;
family = findOrCreateSubTaxon(order, idPrefix, familyPath).withRank(FAMILY).
                              withScientificName(familyName).
                              withSpecificEpythet(familyName).
  genus = findOrCreateSubTaxon(family, idPrefix, genusPath).withRank(GENUS).
                               withScientificName(genusName).
                               withSpecificEpythet(genusName).
final Taxon species = findOrCreateSubTaxon(genus, idPrefix, speciesPath).withRank(SPECIES).
                                     withScientificName(genusName + " " + speciesName).
                                     withSpecificEpythet(speciesName).
origin: it.tidalwave.bluebill/it-tidalwave-bluebill-taxonomy-birds

/*******************************************************************************************************************
 *
 *
 ******************************************************************************************************************/
@Nonnull
protected Taxon createAves (final @Nonnull Taxonomy taxonomy, final @Nonnull String idPrefix)
 throws RepositoryException
 {
  return taxonomy.createTopTaxon().withScientificName("Aves").
                   withSpecificEpythet("Aves").
                   withId(new Id(idPrefix + "/Animalia/Chordata/Aves")).
                   withRank(Taxon.Rank.CLASS).
                   build();
 }
origin: it.tidalwave.bluebill/it-tidalwave-bluebill-taxonomy-birds-ebn-italia-2003

familyPath = orderPath + "/" + familyName;
order = findOrCreateSubTaxon(aves, idPrefix, orderPath).withRank(ORDER).
                            withScientificName(orderName).
                            withSpecificEpythet(orderName).
                            build();
family = findOrCreateSubTaxon(order, idPrefix, familyPath).withRank(FAMILY).
                              withScientificName(familyName).
                              withSpecificEpythet(familyName).
final Taxon genus = findOrCreateSubTaxon(family, idPrefix, genusPath).withRank(GENUS).
                                   withScientificName(genusName).
                                   withSpecificEpythet(genusName).
                                   build();
final Taxon species = findOrCreateSubTaxon(genus, idPrefix, speciesPath).withRank(SPECIES).
                                     withScientificName(genusName + " " + speciesName).
                                     withSpecificEpythet(speciesName).
origin: it.tidalwave.bluebill/it-tidalwave-bluebill-taxonomy-birds

Builder builder = findOrCreateSubTaxon(aves, "", id).withRank(rank).
                           withScientificName(scientificName).
                           withSpecificEpythet(split[rankIndex]).
origin: it.tidalwave.bluebill/it-tidalwave-bluebill-taxonomy-birds

final Taxon order = findOrCreateSubTaxon(aves, idPrefix, path).withRank(ORDER).
                                withScientificName(orderName).
                                withSpecificEpythet(orderName).
                                build();
path += "/" + familyName;
final Taxon family = findOrCreateSubTaxon(order, idPrefix, path).withRank(FAMILY).
                                 withScientificName(familyName).
                                 withSpecificEpythet(familyName).
                                 build();
path += "/" + genusName;
final Taxon genus = findOrCreateSubTaxon(family, idPrefix, path).withRank(GENUS).
                                 withScientificName(genusName).
                                 withSpecificEpythet(genusName).
                                 build();
path += "/" + speciesName;
final Taxon species = findOrCreateSubTaxon(genus, idPrefix, path).withRank(SPECIES).
                                 withScientificName(genusName + " " + speciesName).
                                 withSpecificEpythet(speciesName).
  try
    findOrCreateSubTaxon(species, idPrefix, path).withRank(SUBSPECIES).
                           withScientificName(genusName + " " + speciesName + " " + subSpeciesName).
                           withSpecificEpythet(subSpeciesName).
origin: it.tidalwave.bluebill/it-tidalwave-bluebill-taxonomy-birds

withDisplayNames(displayable).
withId(id).
withRank(rank).
withInitializers(initializers).
build();
it.tidalwave.bluebill.taxonomyTaxon$BuilderwithRank

Popular methods of Taxon$Builder

  • build
  • withDisplayNames
  • withScientificName
  • withSpecificEpythet
  • getDisplayable
  • getRank
  • getScientificName
  • getScientificNameId
  • getSpecificEpythet
  • withDisplayName
  • withId
  • withInitializer
  • withId,
  • withInitializer,
  • withInitializers,
  • withScientificNameId

Popular in Java

  • Finding current android device location
  • runOnUiThread (Activity)
  • requestLocationUpdates (LocationManager)
  • getApplicationContext (Context)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • JFileChooser (javax.swing)
  • Github Copilot alternatives
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