org.apache.commons.id.serial.PrefixedNumericGenerator Maven / Gradle / Ivy
/*
* 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.
*/
package org.apache.commons.id.serial;
/**
* PrefixedNumericGenerator
is an Identifier Generator
* that generates an incrementing number with a prefix as a String object.
*
* If the wrap
argument passed to the constructor is set to
* true
, the sequence will wrap, returning negative values when
* {@link Long#MAX_VALUE} reached; otherwise an {@link IllegalStateException}
* will be thrown.
*
* @author Commons-Id team
* @version $Id$
*/
public class PrefixedNumericGenerator extends NumericGenerator {
/** 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 null
*/
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 prefix;
}
public long maxLength() {
return super.maxLength() + prefix.length();
}
public long minLength() {
return super.minLength() + prefix.length();
}
public String nextStringIdentifier() {
StringBuffer sb = new StringBuffer(prefix);
sb.append(super.nextStringIdentifier());
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy