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

com.yandex.ydb.jdbc.settings.ToDriverPropertyInfo Maven / Gradle / Ivy

The newest version!
package com.yandex.ydb.jdbc.settings;

import java.sql.DriverPropertyInfo;

import javax.annotation.Nullable;

public interface ToDriverPropertyInfo {

    default DriverPropertyInfo toDriverPropertyInfoFrom(ParsedProperty value) {
        return toDriverPropertyInfo(value != null ? value.getRawValue() : null);
    }

    DriverPropertyInfo toDriverPropertyInfo(@Nullable String value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy