View Javadoc
1   package org.oxerr.commons.user.phone.domain;
2   
3   import static com.querydsl.core.types.PathMetadataFactory.*;
4   
5   import com.querydsl.core.types.dsl.*;
6   
7   import com.querydsl.core.types.PathMetadata;
8   import javax.annotation.Generated;
9   import com.querydsl.core.types.Path;
10  import com.querydsl.core.types.dsl.PathInits;
11  
12  
13  /**
14   * QPhone is a Querydsl query type for Phone
15   */
16  @Generated("com.querydsl.codegen.EntitySerializer")
17  public class QPhone extends EntityPathBase<Phone> {
18  
19      private static final long serialVersionUID = 1066025093L;
20  
21      private static final PathInits INITS = PathInits.DIRECT2;
22  
23      public static final QPhone phone = new QPhone("phone");
24  
25      public final org.oxerr.commons.user.domain.QBaseEntity _super;
26  
27      // inherited
28      public final org.oxerr.commons.user.domain.QUser createdBy;
29  
30      //inherited
31      public final DateTimePath<java.time.Instant> createdDate;
32  
33      //inherited
34      public final ComparablePath<java.util.UUID> id;
35  
36      // inherited
37      public final org.oxerr.commons.user.domain.QUser lastModifiedBy;
38  
39      //inherited
40      public final DateTimePath<java.time.Instant> lastModifiedDate;
41  
42      public final StringPath number = createString("number");
43  
44      public final org.oxerr.commons.user.domain.QUser user;
45  
46      //inherited
47      public final NumberPath<Long> version;
48  
49      public QPhone(String variable) {
50          this(Phone.class, forVariable(variable), INITS);
51      }
52  
53      public QPhone(Path<? extends Phone> path) {
54          this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
55      }
56  
57      public QPhone(PathMetadata metadata) {
58          this(metadata, PathInits.getFor(metadata, INITS));
59      }
60  
61      public QPhone(PathMetadata metadata, PathInits inits) {
62          this(Phone.class, metadata, inits);
63      }
64  
65      public QPhone(Class<? extends Phone> type, PathMetadata metadata, PathInits inits) {
66          super(type, metadata, inits);
67          this._super = new org.oxerr.commons.user.domain.QBaseEntity(type, metadata, inits);
68          this.createdBy = _super.createdBy;
69          this.createdDate = _super.createdDate;
70          this.id = _super.id;
71          this.lastModifiedBy = _super.lastModifiedBy;
72          this.lastModifiedDate = _super.lastModifiedDate;
73          this.user = inits.isInitialized("user") ? new org.oxerr.commons.user.domain.QUser(forProperty("user")) : null;
74          this.version = _super.version;
75      }
76  
77  }
78