Tabnine Logo
FetchGroup
Code IndexAdd Tabnine to your IDE (free)

How to use
FetchGroup
in
javax.jdo.annotations

Best Java code snippets using javax.jdo.annotations.FetchGroup (Showing top 2 results out of 315)

origin: org.datanucleus/datanucleus-java5

for (int j=0;j<groups.length;j++)
  fetchGroups[j] = new FetchGroupMetaData(cmd, groups[j].postLoad(), groups[j].name());
  int numFields = groups[j].members().length;
  for (int k=0;k<numFields;k++)
      groups[j].members()[k].name(),
      null, null, null, null, null, null, null, null, null, null, null, 
      null, null, null, null, "" + groups[j].members()[k].recursionDepth(), null, null, null, null);
    fetchGroups[j].addMember(fmd);
  int numGroups = groups[j].fetchGroups().length;
  for (int k=0;k<numGroups;k++)
    FetchGroupMetaData subgrp = new FetchGroupMetaData(fetchGroups[j], null, groups[j].fetchGroups()[k]);
    fetchGroups[j].addFetchGroup(subgrp);
origin: org.datanucleus/datanucleus-api-jdo

for (FetchGroup group : groups)
  FetchGroupMetaData fgmd = cmd.newFetchGroupMetaData(group.name());
  if (!StringUtils.isWhitespace(group.postLoad()))
    fgmd.setPostLoad(Boolean.valueOf(group.postLoad()));
  int numFields = group.members().length;
  for (int k = 0; k < numFields; k++)
    FetchGroupMemberMetaData fgmmd = new FetchGroupMemberMetaData(fgmd, group.members()[k].name());
    fgmmd.setRecursionDepth(group.members()[k].recursionDepth());
    fgmd.addMember(fgmmd);
  int numGroups = group.fetchGroups().length;
  for (int k = 0; k < numGroups; k++)
    fgmd.addFetchGroup(new FetchGroupMetaData(group.fetchGroups()[k]));
javax.jdo.annotationsFetchGroup

Most used methods

  • fetchGroups
  • members
  • name
  • postLoad

Popular in Java

  • Updating database using SQL prepared statement
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getSharedPreferences (Context)
  • startActivity (Activity)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • IsNull (org.hamcrest.core)
    Is the value null?
  • 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