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

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

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

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

                              withScientificName(orderName).
                              withSpecificEpythet(orderName).
                              build();
                                withScientificName(familyName).
                                withSpecificEpythet(familyName).
                                build();
                                   withScientificName(genusName).
                                   withSpecificEpythet(genusName).
                                   build();
final Taxon species = findOrCreateSubTaxon(genus, idPrefix, speciesPath).withRank(SPECIES).
                                     withScientificName(genusName + " " + speciesName).
                                     withSpecificEpythet(speciesName).
                                     withDisplayNames(commonNames).
                                     build();
origin: it.tidalwave.bluebill/it-tidalwave-bluebill-taxonomy-birds-birdsofindia-2009

withSpecificEpythet(orderName).
withDisplayName(orderEn, Locale.ENGLISH).
build();
  withScientificName(familyName).
  withSpecificEpythet(familyName).
  build();
   withScientificName(genusName).
   withSpecificEpythet(genusName).
   build();
         withSpecificEpythet(speciesName).
         withDisplayNames(commonNames).
         build();
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

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

                           withInitializers(initializers);
builder = process(path, scientificName, builder);
final Taxon taxon = builder.build();
origin: it.tidalwave.bluebill/it-tidalwave-bluebill-taxonomy-birds

                                withScientificName(orderName).
                                withSpecificEpythet(orderName).
                                build();
path += "/" + familyName;
final Taxon family = findOrCreateSubTaxon(order, idPrefix, path).withRank(FAMILY).
                                 withSpecificEpythet(familyName).
                                 withDisplayNames(familyCommonNames).
                                 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).
                                 withSpecificEpythet(speciesName).
                                 withDisplayNames(speciesCommonNames).
                                 build();
                           withSpecificEpythet(subSpeciesName).
                           withDisplayNames(speciesCommonNames).
                           build();
origin: it.tidalwave.bluebill/it-tidalwave-bluebill-taxonomy-birds

                   withRank(rank).
                   withInitializers(initializers).
                   build();
map.put(scientificName, taxon);
it.tidalwave.bluebill.taxonomyTaxon$Builderbuild

Popular methods of Taxon$Builder

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

Popular in Java

  • Reactive rest calls using spring rest template
  • setRequestProperty (URLConnection)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getResourceAsStream (ClassLoader)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • From CI to AI: The AI layer in your organization
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