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

org.fusesource.fabric.agent.mvn.StringVersionSegment Maven / Gradle / Ivy

/**
 * Copyright (C) FuseSource, Inc.
 * http://fusesource.com
 *
 * 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 org.fusesource.fabric.agent.mvn;

import org.fusesource.fabric.agent.utils.NullArgumentException;

/**
 * A version segment backed up by a String.
 *
 * @author Alin Dreghiciu
 * @since 0.2.0, January 30, 2008
 */
class StringVersionSegment
        implements VersionSegment {

    /**
     * Version segment.
     */
    private final String m_segment;

    /**
     * Creates a new string version segment.
     *
     * @param segment version segment. Cannot be null.
     */
    StringVersionSegment(final String segment) {
        NullArgumentException.validateNotNull(segment, "Segment");

        m_segment = segment;
    }

    /**
     * @see Comparable#compareTo(Object)
     */
    public int compareTo(final VersionSegment versionSegment) {
        if (versionSegment == null) {
            return 1;
        }
        return m_segment.compareTo(((StringVersionSegment) versionSegment).m_segment);
    }

    @Override
    public boolean equals(final Object o) {
        if (this == o) {
            return true;
        }
        if (!(o instanceof StringVersionSegment)) {
            return false;
        }

        StringVersionSegment that = (StringVersionSegment) o;

        return m_segment.equals(that.m_segment);
    }

    @Override
    public int hashCode() {
        return m_segment.hashCode();
    }

    @Override
    public String toString() {
        return m_segment;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy