10 lines
168 B
Java
Raw Normal View History

2016-07-29 11:55:35 +02:00
package com.baeldung.immutable;
2016-07-30 10:50:47 +02:00
import org.immutables.value.Value;
2016-07-29 11:55:35 +02:00
2016-07-30 10:50:47 +02:00
@Value.Immutable
public interface Address {
String getStreetName();
Integer getNumber();
2016-07-29 11:55:35 +02:00
}