org.davidmoten.rx.jdbc.annotations.Column Java Examples

The following examples show how to use org.davidmoten.rx.jdbc.annotations.Column. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
String name();
 
Example #2
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
int score();
 
Example #3
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
String name();
 
Example #4
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
String name();
 
Example #5
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
int name();
 
Example #6
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column("score")
int examScore();
 
Example #7
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column("namez")
String fullName();
 
Example #8
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column("score")
int examScore();
 
Example #9
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column("name")
String fullName();
 
Example #10
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
int score();
 
Example #11
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
String name();
 
Example #12
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
String name();
 
Example #13
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
int score();
 
Example #14
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
int score();
 
Example #15
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
String name();
 
Example #16
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
int score();
 
Example #17
Source File: Department.java    From webflux-rxjava2-jdbc-example with Apache License 2.0 4 votes vote down vote up
@Column("department_id")
int getId();
 
Example #18
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
int score();
 
Example #19
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
String name();
 
Example #20
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
int score();
 
Example #21
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
String name();
 
Example #22
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
String document();
 
Example #23
Source File: DatabaseTest.java    From rxjava2-jdbc with Apache License 2.0 4 votes vote down vote up
@Column
String name();
 
Example #24
Source File: Department.java    From webflux-rxjava2-jdbc-example with Apache License 2.0 4 votes vote down vote up
@Column("department_name")
String getName();
 
Example #25
Source File: WalletData.java    From Hands-On-Reactive-Programming-in-Spring-5 with MIT License votes vote down vote up
@Column Integer withdraws(); 
Example #26
Source File: WalletData.java    From Hands-On-Reactive-Programming-in-Spring-5 with MIT License votes vote down vote up
@Column Integer deposits(); 
Example #27
Source File: WalletData.java    From Hands-On-Reactive-Programming-in-Spring-5 with MIT License votes vote down vote up
@Column Integer balance(); 
Example #28
Source File: WalletData.java    From Hands-On-Reactive-Programming-in-Spring-5 with MIT License votes vote down vote up
@Column String owner(); 
Example #29
Source File: WalletData.java    From Hands-On-Reactive-Programming-in-Spring-5 with MIT License votes vote down vote up
@Column Integer id(); 
Example #30
Source File: Book.java    From Hands-On-Reactive-Programming-in-Spring-5 with MIT License votes vote down vote up
@Column Integer publishing_year();