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

javax.money.CurrencyContextBuilder Maven / Gradle / Ivy

Go to download

JSR 354 provides an API for representing, transporting, and performing comprehensive calculations with Money and Currency. This module provides a forward compatible backport of the API.

There is a newer version: 1.0.4
Show newest version
/*
 * CREDIT SUISSE IS WILLING TO LICENSE THIS SPECIFICATION TO YOU ONLY UPON THE CONDITION THAT YOU
 * ACCEPT ALL OF THE TERMS CONTAINED IN THIS AGREEMENT. PLEASE READ THE TERMS AND CONDITIONS OF THIS
 * AGREEMENT CAREFULLY. BY DOWNLOADING THIS SPECIFICATION, YOU ACCEPT THE TERMS AND CONDITIONS OF
 * THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY IT, SELECT THE "DECLINE" BUTTON AT THE
 * BOTTOM OF THIS PAGE. Specification: JSR-354 Money and Currency API ("Specification") Copyright
 * (c) 2012-2013, Credit Suisse All rights reserved.
 */
package javax.money;

import java.util.Objects;

/**
 * Builder class for creating new instances of {@link CurrencyContext} adding detailed information
 * about a {@link CurrencyUnit} instance. Typically the
 * contexts are created and assigned by the classes that implement the {@link javax.money.spi.CurrencyProviderSpi}.
 * The according implementation classes should document, which attributes are available.
 * 

* Note this class is NOT thread-safe. * * @see CurrencyUnit#getContext() */ public final class CurrencyContextBuilder extends AbstractContextBuilder { /** * Creates a new builder. * * @param provider the provider name, creating the corresponding {@link CurrencyUnit} containing * the final {@link CurrencyContext} created by this builder, not null. */ private CurrencyContextBuilder(String provider) { Objects.requireNonNull(provider); setProviderName(provider); } /** * Creates a new builder. * * @param context the {@link CurrencyContext} to be used for initializing this builder. */ private CurrencyContextBuilder(CurrencyContext context) { Objects.requireNonNull(context); importContext(context); } /** * Creates a new instance of {@link CurrencyContext}. * * @return a new {@link CurrencyContext} instance. */ @Override public CurrencyContext build() { return new CurrencyContext(this); } /** * Creates a new builder. * * @param provider the provider name, creating the corresponding {@link CurrencyUnit} containing * the final {@link CurrencyContext} created by this builder, not null. * @return a new {@link CurrencyContextBuilder} instance, never null. */ public static CurrencyContextBuilder of(String provider) { return new CurrencyContextBuilder(provider); } /** * Creates a new builder. * * @param context the {@link CurrencyContext} to be used for initializing this builder. * @return a new {@link CurrencyContextBuilder} instance, never null. */ public static CurrencyContextBuilder of(CurrencyContext context) { return new CurrencyContextBuilder(context); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy