blob: ebf45e2013bd4f529dba798fbaa3184737747683 [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.
*
*************************************************************/
#ifndef __com_sun_star_i18n_CollatorOptions_idl__
#define __com_sun_star_i18n_CollatorOptions_idl__
//=============================================================================
module com { module sun { module star { module i18n {
//=============================================================================
/** Options to be used with <type>XCollator</type> methods.
*/
published constants CollatorOptions
{
/// Ignore case.
const short CollatorOptions_IGNORE_CASE = 1;
/// Ignore Kana.
const short CollatorOptions_IGNORE_KANA = 2;
/// Ignore width.
const short CollatorOptions_IGNORE_WIDTH = 4;
/// Ignore case and accent.
const short CollatorOptions_IGNORE_CASE_ACCENT = 8;
};
//=============================================================================
}; }; }; };
#endif