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

com.bigdata.btree.keys.StrengthEnum Maven / Gradle / Ivy

package com.bigdata.btree.keys;

import java.text.Collator;

/**
 * Type safe enumeration for the strength.
 * 

* Note: ICU and the JDK use different integer constants for the * #IDENTICAL strength * * @author Bryan Thompson * @version $Id$ */ public enum StrengthEnum { /** * See {@link Collator#PRIMARY}. */ Primary, /** * See {@link Collator#SECONDARY}. */ Secondary, /** * See {@link Collator#TERTIARY}. */ Tertiary, /** * Note: this option is NOT supported by the JDK. */ Quaternary, /** * See {@link Collator#IDENTICAL}. */ Identical; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy