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

com.yahoo.elide.Settings Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2023, the original author or authors.
 * Licensed under the Apache License, Version 2.0
 * See LICENSE file in project root for terms.
 */
package com.yahoo.elide;

/**
 * Used for defining additional settings.
 */
public interface Settings {

    /**
     * Returns a builder with the current values.
     *
     * @return the builder to mutate
     */
    public SettingsBuilder mutate();

    /**
     * Mutable builder for defining additional settings.
     */
    public interface SettingsBuilder {

        /**
         * Build the settings.
         *
         * @return the settings
         */
        Settings build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy