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

How to use
Container
in
com.mysema.rdfbean.annotations

Best Java code snippets using com.mysema.rdfbean.annotations.Container (Showing top 6 results out of 315)

origin: com.mysema.rdf/rdfbean-core

public boolean isContainer() {
  Container container = this.getAnnotation(Container.class);
  return container != null
      && container.value() != ContainerType.LIST
      && container.value() != ContainerType.NONE;
}
origin: com.mysema.rdf/rdfbean-core

@Container(ContainerType.NONE)
List<String> namesList = new ArrayList<String>();
@Container(ContainerType.NONE)
String[] namesArray;
origin: com.mysema.rdf/rdfbean-core

@Container(ContainerType.SEQ)
List<String> names = new ArrayList<String>();
origin: com.mysema.rdf/rdfbean-core

@Nullable
public ContainerType getContainerType() {
  Container container = this.getAnnotation(Container.class);
  return container != null ? container.value() : null;
}
origin: com.mysema.rdf/rdfbean-core

@Container(ContainerType.SEQ)
private final List<DeleteDTO> seqReference = new ArrayList<DeleteDTO>();
origin: com.mysema.rdf/rdfbean-core

public boolean isList() {
  // refers to List RDF mapping, not the java.util.List type
  Container container = getAnnotation(Container.class);
  if (container != null) {
    return ContainerType.LIST == container.value();
  } else {
    return List.class.isAssignableFrom(getType()) || type.isArray();
  }
}
com.mysema.rdfbean.annotationsContainer

Most used methods

  • <init>
  • value

Popular in Java

  • Parsing JSON documents to java classes using gson
  • findViewById (Activity)
  • runOnUiThread (Activity)
  • putExtra (Intent)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • Runner (org.openjdk.jmh.runner)
  • Top PhpStorm plugins
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