All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pepsoft.util.LongAttributeKey Maven / Gradle / Ivy

The newest version!
package org.pepsoft.util;

/**
 * An implementation of {@link AttributeKey} for {@link Long}-typed values.
 */
public final class LongAttributeKey extends AttributeKey {
    public LongAttributeKey(String key) {
        super(key);
    }

    public LongAttributeKey(String key, Long defaultValue) {
        super(key, defaultValue);
    }

    @Override
    public String toString(Long value) {
        return value.toString();
    }

    @Override
    public Long toValue(String str) {
        return Long.valueOf(str);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy