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

com.aspectran.utils.wildcard.WildcardPatterns Maven / Gradle / Ivy

There is a newer version: 8.1.5
Show newest version
/*
 * Copyright (c) 2008-2025 The Aspectran Project
 *
 * 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.
 */
package com.aspectran.utils.wildcard;

import com.aspectran.utils.annotation.jsr305.NonNull;
import com.aspectran.utils.annotation.jsr305.Nullable;

import java.util.ArrayList;
import java.util.List;

/**
 * 

Created: 2024-12-13

*/ public class WildcardPatterns { private final WildcardPattern[] patterns; private WildcardPatterns(@NonNull WildcardPattern[] patterns) { this.patterns = patterns; } @NonNull public WildcardPattern[] getPatterns() { return patterns; } public boolean hasPatterns() { return (patterns.length > 0); } public boolean matches(CharSequence input) { for (WildcardPattern pattern : patterns) { if (pattern.matches(input)) { return true; } } return false; } @Nullable static WildcardPatterns of(WildcardPattern[] patterns) { if (patterns == null || patterns.length == 0) { return null; } return new WildcardPatterns(patterns); } @Nullable public static WildcardPatterns of(String[] patterns) { return of(patterns, Character.MIN_VALUE); } @Nullable public static WildcardPatterns of(String[] patterns, char separator) { if (patterns == null || patterns.length == 0) { return null; } List list = new ArrayList<>(patterns.length); for (String pattern : patterns) { if (pattern != null && !pattern.isEmpty()) { WildcardPattern wildcardPattern = new WildcardPattern(pattern, separator); list.add(wildcardPattern); } } if (!list.isEmpty()) { return of(list.toArray(new WildcardPattern[0])); } else { return null; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy