javax.time.Duration
現在、JSR-310 のごく一部をライブラリに追加することを考えています。
これは現在完全に正常に動作します。
But JSR-310 is planned to be integrated in Java 8! When executing our application on Java 8, what will happen if there is both a javax.time.Duration
class in the standard library and the same class shipping with our jar file?
Will one of the classes be silently ignored? (Which one?) Will there be an error when a Java 8 VM tries to load the class from our library?
Are there any compatibility issues I need to be aware of?