Tabnine Logo
com.mysema.rdfbean.annotations
Code IndexAdd Tabnine to your IDE (free)

How to use com.mysema.rdfbean.annotations

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

origin: com.mysema.rdf/rdfbean-core

@ClassMapping(ns = TEST.NS, ln = "Employee")
public static class EmployeeInfo {
  @Id
  ID id;
  @Predicate
  String name;
  @Path({ @Predicate(ln = "company"), @Predicate(ln = "name") })
  String companyName;
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public static class Term {
  @Id
  public ID id;
  @Predicate
  public String text2;
  public String getText2() {
    return text2;
  }
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
static class Entity {
  
  @Id
  ID id;
  
  @Properties
  Map<UID, ID> properties;
  
  @Properties(context=TEST.NS)
  Map<UID, ID> properties2;
}

origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public static final class AType {
  @Mixin
  BType asBType = new BType();
  @Id(IDType.LOCAL)
  String id;
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public class Entity2 {
  @Id(IDType.LOCAL)
  public String id;
  public String getId() {
    return id;
  }
  @Override
  public String toString() {
    return id.toString();
  }
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public class Elements extends Identifiable {
  @Predicate
  public List<Element> elements;
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public static class InvalidProject1 {
  @Properties
  public Map<UID, NODE> starter;
  @Properties
  public Map<UID, NODE> invalid;
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public static class Person {
  @Id(IDType.LOCAL)
  public String id;
  @Predicate
  public String name;
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public class Identifiable {
  @Id(IDType.LOCAL)
  public String id;
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public final static class DomainType<T> {
  @Predicate(ns = RDF.NS, ln = "type")
  Class<T> parametrizedClass;
  @Id(IDType.URI)
  String uri = TEST.NS + "domainType";
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public static class Company {
  @Id
  ID id;
  @Predicate(ln = "company", inv = true)
  Set<Department> departments;
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public static class Department {
  @Id
  ID id;
  @Predicate
  Company company;
  @Predicate(ln = "department", inv = true)
  Set<Employee> employees;
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public class Entity {
  @Id(IDType.LOCAL)
  public String id;
  @Predicate
  public Document document;
  @Predicate
  public String text;
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public class Revision {
  @Id(IDType.LOCAL)
  public String id;
  @Predicate
  public long created;
  @Predicate
  public Entity revisionOf;
  @Predicate
  public long svnRevision;
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public static class Term {
  @Id
  public ID id;
  @Predicate
  public String meaning;
  public String getMeaning() {
    return meaning;
  }
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping(ns = "http://www.foo.com#")
public class MusicStore {
  @Id
  public ID id;
  public ID getId() {
    return id;
  }
  @Predicate(ns = RDFS.NS)
  public String label;
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public static class Iteration {
  @Id(IDType.LOCAL)
  String id;
  @Predicate
  String name;
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public static class Comment {
  @Id
  ID id;
  @Predicate
  Note note;
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public static class ChildContainer {
  @Id(IDType.LOCAL)
  public String id;
  @Predicate
  public List<Child> children;
}
origin: com.mysema.rdf/rdfbean-core

@ClassMapping
public static final class Child {
  @Id
  ID id;
  @Predicate
  final Parent parent;
  public Child(Parent parent) {
    this.parent = parent;
  }
}
com.mysema.rdfbean.annotations

Most used classes

  • ClassMapping
  • Id
  • Localized
  • Predicate
  • Container
  • Default,
  • MapElements,
  • Path,
  • Properties,
  • ComponentType,
  • ContainerType,
  • Defaults,
  • InjectService,
  • MappedClasses,
  • Mixin,
  • Required
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