Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
variphx
/
java-learn
like
0
Configuration error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b58280e
java-learn
/
src
/
main
/
java
/
com
/
example
/
app
/
mappers
/
Mapper.java
variphx
refactor
b58280e
6 months ago
raw
Copy download link
history
blame
Safe
128 Bytes
package
com.example.app.mappers;
public
interface
Mapper
<E, D> {
public
E
fromDto
(D dto)
;
public
D
toDto
(E entity)
;
}