java.text.Bidi类的isRightToLeft()方法用于检查它是否具有从右到左的线和基本方向。
用法:
public boolean isRightToLeft()
参数:此方法不接受任何参数。
返回值:如果此双向标线同时具有从右到左的线和基本方向,则此方法返回true,否则返回false。
下面是说明isRightToLeft()方法的示例:
示例1:
// Java program to demonstrate
// isRightToLeft() method
import java.text.*;
import java.util.*;
import java.io.*;
public class GFG {
public static void main(String[] argv)
{
// creating and initializing Bidi
// with base direction
Bidi bidi
= new Bidi(
"Geeks For Geeks",
Bidi.DIRECTION_LEFT_TO_RIGHT);
// checking both line and base direction
// using isRightToLeft() method
boolean status = bidi.isRightToLeft();
// display the result
if (status)
System.out.println(
"Both Line and Base "
+ "direction is right to left");
else
System.out.println(
"Both Line and Base "
+ "direction is not right to left");
}
}
输出:
Both Line and Base direction is not right to left
示例2:
// Java program to demonstrate
// isRightToLeft() method
import java.text.*;
import java.util.*;
import java.io.*;
public class GFG {
public static void main(String[] argv)
{
// creating and initializing
// AttributedString Object
AttributedString attr
= new AttributedString("GEEkS");
// adding attribute of langugae
// using addAttribute() mehtod
attr.addAttribute(
AttributedCharacterIterator
.Attribute
.LANGUAGE,
new Locale("ar_QA"));
// creating and initializing Bidi
// with AttributedCharacterIterator
Bidi bidi = new Bidi(attr.getIterator());
// checking both line and base direction
// using isRightToLeft() method
boolean status = bidi.isRightToLeft();
// display the result
if (status)
System.out.println(
"Both Line and Base "
+ "direction is right to left");
else
System.out.println(
"Both Line and Base "
+ "direction is not right to left");
}
}
输出:
Both Line and Base direction is not right to left
参考: https://docs.oracle.com/javase/9/docs/api/java/text/Bidi.html#isRightToLeft–
相关用法
- Java Bidi getLength()用法及代码示例
- Java Bidi createLineBidi()用法及代码示例
- Java Bidi baseIsLeftToRight()用法及代码示例
- Java Bidi isLeftToRight()用法及代码示例
- Java Bidi toString()用法及代码示例
- Java Bidi getBaseLevel()用法及代码示例
- Java Bidi getLevelAt()用法及代码示例
- Java Bidi getRunStart()用法及代码示例
- Java Bidi getRunLevel()用法及代码示例
- Java Bidi getRunLimit()用法及代码示例
- Java Bidi getRunCount()用法及代码示例
- Java Java lang.Long.numberOfLeadingZeros()用法及代码示例
- Java Java lang.Long.byteValue()用法及代码示例
- Java Java lang.Long.reverse()用法及代码示例
- Java Java lang.Long.highestOneBit()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Bidi isRightToLeft() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。