PrefixedNumericGenerator.java
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
/*
* Modificato da Link.it (https://link.it) per supportare le seguenti funzionalità:
* - Generazione ID all'interno delle interfacce di OpenSPCoop2
* - Gestione caratteri massimi per numeri e cifre
* - Possibilità di utilizzare lowerCase e/o upperCase
*
* Copyright (c) 2005-2024 Link.it srl (https://link.it).
*/
package org.openspcoop2.utils.id.apache.serial;
/**
* <code>PrefixedNumericGenerator</code> is an Identifier Generator
* that generates an incrementing number with a prefix as a String object.
*
* <p>If the <code>wrap</code> argument passed to the constructor is set to
* <code>true</code>, the sequence will wrap, returning negative values when
* {@link Long#MAX_VALUE} reached; otherwise an {@link IllegalStateException}
* will be thrown.</p>.
*
* Author of the original commons apache code:
* @author Commons-Id team
* @version $Id$
*
* Authors of the Link.it modification to the code:
* @author $Author$
* @version $Rev$, $Date$
*/
public class PrefixedNumericGenerator extends NumericGenerator {
/**
*
*/
private static final long serialVersionUID = 1L;
/** Prefix. */
private final String prefix;
/**
* Create a new prefixed numeric generator with the specified prefix.
*
* @param prefix prefix, must not be null
* @param wrap should the factory wrap when it reaches the maximum
* long value (or throw an exception)
* @param initialValue the initial long value to start at
* @throws NullPointerException if prefix is <code>null</code>
*/
public PrefixedNumericGenerator(String prefix, boolean wrap, long initialValue) {
super(wrap, initialValue);
if (prefix == null) {
throw new NullPointerException("prefix must not be null");
}
this.prefix = prefix;
}
/**
* Return the prefix for this prefixed numeric generator.
*
* @return the prefix for this prefixed numeric generator
*/
public String getPrefix() {
return this.prefix;
}
@Override
public long maxLength() {
return super.maxLength() + this.prefix.length();
}
@Override
public long minLength() {
return super.minLength() + this.prefix.length();
}
@Override
public String nextStringIdentifier() throws MaxReachedException {
StringBuilder sb = new StringBuilder(this.prefix);
sb.append(super.nextStringIdentifier());
return sb.toString();
}
}