We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a demo to explain how to convert complex generic type data? data type for instance,
public class DataObject {
private String status; private String errorCode; private String message = ""; private String type; private T data; private PageInfo<T> page;
}
public class PageInfo {
private int page = 1; private int pageSize = 10; private int total; private int maxPage; private List<T> items;
The text was updated successfully, but these errors were encountered:
check out the roundtrip test
LoganSquare/processor/src/test/java/com/bluelinelabs/logansquare/processor/RoundTripTests.java
Line 165 in 6c5ec52
Sorry, something went wrong.
No branches or pull requests
Is there a demo to explain how to convert complex generic type data?
data type for instance,
public class DataObject {
}
public class PageInfo {
}
The text was updated successfully, but these errors were encountered: