
com.github.alex1304.rdi.config.Value Maven / Gradle / Ivy
package com.github.alex1304.rdi.config;
import java.util.Optional;
class Value implements Injectable {
private final Object value;
private final Class> type;
Value(Object value, Class> type) {
this.value = value;
this.type = type;
}
@Override
public Class> getType() {
return type;
}
@Override
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy