mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 03:01:12 +00:00
#355 document, abstract base, traits and example domain
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.iluwatar.abstractdocument.domain;
|
||||
|
||||
import java.util.Optional;
|
||||
|
||||
import com.iluwatar.abstractdocument.Document;
|
||||
|
||||
public interface HasPrice extends Document {
|
||||
|
||||
default Optional<Number> getPartner() {
|
||||
return Optional.ofNullable((Number) get("price"));
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user