blob: de95e1cf787ee759ba341956b3a9b46130c8353b [file] [log] [blame]
/*
* 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.directory.server.ntp.messages;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
/**
* Leap Indicator (LI): This is a two-bit code warning of an impending
* leap second to be inserted/deleted in the last minute of the current
* day, with bit 0 and bit 1, respectively, coded as follows:
*
* LI Value Meaning
* -------------------------------------------------------
* 00 0 no warning
* 01 1 last minute has 61 seconds
* 10 2 last minute has 59 seconds)
* 11 3 alarm condition (clock not synchronized)
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$, $Date$
*/
public final class LeapIndicatorType implements Comparable<LeapIndicatorType>
{
/**
* Constant for the "No leap second warning" leap indicator type.
*/
public static final LeapIndicatorType NO_WARNING = new LeapIndicatorType( 0, "No leap second warning." );
/**
* Constant for the "Last minute has 61 seconds" leap indicator type.
*/
public static final LeapIndicatorType POSITIVE_LEAP_SECOND = new LeapIndicatorType( 1,
"Last minute has 61 seconds." );
/**
* Constant for the "Last minute has 59 seconds" leap indicator type.
*/
public static final LeapIndicatorType NEGATIVE_LEAP_SECOND = new LeapIndicatorType( 2,
"Last minute has 59 seconds." );
/**
* Constant for the "Alarm condition (clock not synchronized)" leap indicator type.
*/
public static final LeapIndicatorType ALARM_CONDITION = new LeapIndicatorType( 3,
"Alarm condition (clock not synchronized)." );
/**
* Array for building a List of VALUES.
*/
private static final LeapIndicatorType[] values =
{ NO_WARNING, POSITIVE_LEAP_SECOND, NEGATIVE_LEAP_SECOND, ALARM_CONDITION };
/**
* A list of all the leap indicator type constants.
*/
public static final List<LeapIndicatorType> VALUES = Collections.unmodifiableList( Arrays.asList( values ) );
/**
* The name of the leap indicator type.
*/
private final String name;
/**
* The value/code for the leap indicator type.
*/
private final int ordinal;
/**
* Private constructor prevents construction outside of this class.
*/
private LeapIndicatorType( int ordinal, String name )
{
this.ordinal = ordinal;
this.name = name;
}
/**
* Returns the leap indicator type when specified by its ordinal.
*
* @param type
* @return The leap indicator type.
*/
public static LeapIndicatorType getTypeByOrdinal( int type )
{
for ( int ii = 0; ii < values.length; ii++ )
{
if ( values[ii].ordinal == type )
{
return values[ii];
}
}
return NO_WARNING;
}
/**
* Returns the number associated with this leap indicator type.
*
* @return The leap indicator type ordinal.
*/
public int getOrdinal()
{
return ordinal;
}
public int compareTo( LeapIndicatorType that )
{
return ordinal - that.ordinal;
}
public String toString()
{
return name;
}
}