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

fr.landel.utils.assertor.AssertorStepEnum Maven / Gradle / Ivy

/*-
 * #%L
 * utils-assertor
 * %%
 * Copyright (C) 2016 - 2018 Gilles Landel
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */
package fr.landel.utils.assertor;

import java.util.Locale;

import fr.landel.utils.assertor.commons.MessageAssertor;
import fr.landel.utils.assertor.helper.HelperStep;
import fr.landel.utils.assertor.utils.AssertorEnum;

/**
 * This class define methods that can be applied on the checked {@link Enum}
 * object. To provide a result, it's also provide a chain builder by returning a
 * {@link StepEnum}. The chain looks like:
 * 
 * 
 * {@link AssertorStepEnum} > {@link StepEnum} > {@link AssertorStepEnum} > {@link StepEnum}...
 * 
* * This chain always starts with a {@link AssertorStepEnum} and ends with * {@link StepEnum}. * * @since Aug 7, 2016 * @author Gilles * */ @FunctionalInterface public interface AssertorStepEnum> extends AssertorStep, T> { /** * {@inheritDoc} */ @Override default StepEnum get(final StepAssertor result) { return () -> result; } /** * {@inheritDoc} */ @Override default AssertorStepEnum not() { return () -> HelperStep.not(getStep()); } /** * Asserts that the given {@link Class} has the specified {@code name}. * *

* precondition: {@link Enum} cannot be null and {@code name} cannot be * {@code null} or empty *

* *
     * Assertor.that(enumeration).hasName(name).orElseThrow();
     * 
* * @param name * The name * @return The operator */ default StepEnum hasName(final CharSequence name) { return this.hasName(name, null); } /** * Asserts that the given {@link Class} has the specified {@code name}. * *

* precondition: {@link Enum} cannot be null and {@code name} cannot be * {@code null} or empty *

* *
     * Assertor.that(enumeration).hasName(name, "bad name").orElseThrow();
     * 
* * @param name * The name * @param message * The message on mismatch * @param arguments * The arguments of the message, use {@link String#format} * @return The operator */ default StepEnum hasName(final CharSequence name, final CharSequence message, final Object... arguments) { return this.hasName(name, null, message, arguments); } /** * Asserts that the given {@link Class} has the specified {@code name}. * *

* precondition: {@link Enum} cannot be null and {@code name} cannot be * {@code null} or empty *

* *
     * Assertor.that(enumeration).hasName(name, Locale.US, "bad name").orElseThrow();
     * 
* * @param name * The name * @param locale * The locale of the message (only used to format this message, * otherwise use {@link Assertor#setLocale}) * @param message * The message on mismatch * @param arguments * The arguments of the message, use {@link String#format} * @return The operator */ default StepEnum hasName(final CharSequence name, final Locale locale, final CharSequence message, final Object... arguments) { return () -> AssertorEnum.hasName(this.getStep(), name, MessageAssertor.of(locale, message, arguments)); } /** * Asserts that the given {@link Class} has the specified {@code name}, * ignoring case considerations. * *

* precondition: {@link Enum} cannot be null and {@code name} cannot be * {@code null} or empty *

* *
     * Assertor.that(enumeration).hasNameIgnoreCase(name).orElseThrow();
     * 
* * @param name * The name * @return The operator */ default StepEnum hasNameIgnoreCase(final CharSequence name) { return this.hasNameIgnoreCase(name, null); } /** * Asserts that the given {@link Class} has the specified {@code name}, * ignoring case considerations. * *

* precondition: {@link Enum} cannot be null and {@code name} cannot be * {@code null} or empty *

* *
     * Assertor.that(enumeration).hasNameIgnoreCase(name, "bad name").orElseThrow();
     * 
* * @param name * The name * @param message * The message on mismatch * @param arguments * The arguments of the message, use {@link String#format} * @return The operator */ default StepEnum hasNameIgnoreCase(final CharSequence name, final CharSequence message, final Object... arguments) { return this.hasNameIgnoreCase(name, null, message, arguments); } /** * Asserts that the given {@link Class} has the specified {@code name}, * ignoring case considerations. * *

* precondition: {@link Enum} cannot be null and {@code name} cannot be * {@code null} or empty *

* *
     * Assertor.that(enumeration).hasNameIgnoreCase(name, Locale.US, "bad name").orElseThrow();
     * 
* * @param name * The name * @param locale * The locale of the message (only used to format this message, * otherwise use {@link Assertor#setLocale}) * @param message * The message on mismatch * @param arguments * The arguments of the message, use {@link String#format} * @return The operator */ default StepEnum hasNameIgnoreCase(final CharSequence name, final Locale locale, final CharSequence message, final Object... arguments) { return () -> AssertorEnum.hasNameIgnoreCase(this.getStep(), name, MessageAssertor.of(locale, message, arguments)); } /** * Asserts that the given {@link Class} has the specified {@code ordinal}. * *

* precondition: the enum cannot be {@code null} and the {@code ordinal} * cannot be lower than 0 *

* *
     * Assertor.that(enumeration).hasOrdinal(ordinal).orElseThrow();
     * 
* * @param ordinal * The ordinal * @return The operator */ default StepEnum hasOrdinal(final int ordinal) { return this.hasOrdinal(ordinal, null); } /** * Asserts that the given {@link Class} has the specified {@code ordinal}. * *

* precondition: the enum cannot be {@code null} and the {@code ordinal} * cannot be lower than 0 *

* *
     * Assertor.that(enumeration).hasOrdinal(ordinal, "bad ordinal").orElseThrow();
     * 
* * @param ordinal * The ordinal * @param message * The message on mismatch * @param arguments * The arguments of the message, use {@link String#format} * @return The operator */ default StepEnum hasOrdinal(final int ordinal, final CharSequence message, final Object... arguments) { return this.hasOrdinal(ordinal, null, message, arguments); } /** * Asserts that the given {@link Class} has the specified {@code ordinal}. * *

* precondition: the enum cannot be {@code null} and the {@code ordinal} * cannot be lower than 0 *

* *
     * Assertor.that(enumeration).hasOrdinal(ordinal, Locale.US, "bad ordinal").orElseThrow();
     * 
* * @param ordinal * The ordinal * @param locale * The locale of the message (only used to format this message, * otherwise use {@link Assertor#setLocale}) * @param message * The message on mismatch * @param arguments * The arguments of the message, use {@link String#format} * @return The operator */ default StepEnum hasOrdinal(final int ordinal, final Locale locale, final CharSequence message, final Object... arguments) { return () -> AssertorEnum.hasOrdinal(this.getStep(), ordinal, MessageAssertor.of(locale, message, arguments)); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy