org.apache.commons.codec.language.Metaphone.isLastChar()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(8.6k)|赞(0)|评价(0)|浏览(129)

本文整理了Java中org.apache.commons.codec.language.Metaphone.isLastChar()方法的一些代码示例,展示了Metaphone.isLastChar()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Metaphone.isLastChar()方法的具体详情如下:
包路径:org.apache.commons.codec.language.Metaphone
类名称:Metaphone
方法名:isLastChar

Metaphone.isLastChar介绍

暂无

代码示例

代码示例来源:origin: commons-codec/commons-codec

case 'B':
  if ( isPreviousChar(local, n, 'M') &&
     isLastChar(wdsz, n) ) { // B is silent if word ends in MB
    break;
     !isLastChar(wdsz, n) &&
     FRONTV.indexOf(local.charAt(n + 1)) >= 0 ) {
    break;
  if (!isLastChar(wdsz, n) &&
    FRONTV.indexOf(local.charAt(n + 1)) >= 0) {
    code.append('S');
  if (!isLastChar(wdsz, n + 1) &&
    isNextChar(local, n, 'G') &&
    FRONTV.indexOf(local.charAt(n + 2)) >= 0) { // DGE DGI DGY -> J
  if (isLastChar(wdsz, n + 1) &&
    isNextChar(local, n, 'H')) {
    break;
  if (!isLastChar(wdsz, n + 1) &&
    isNextChar(local,n,'H') &&
    !isVowel(local,n+2)) {
  if (!isLastChar(wdsz, n) &&
    FRONTV.indexOf(local.charAt(n + 1)) >= 0 &&
    !hard) {

代码示例来源:origin: robovm/robovm

case 'B' :
  if ( isPreviousChar(local, n, 'M') && 
     isLastChar(wdsz, n) ) { // B is silent if word ends in MB
    break;
     !isLastChar(wdsz, n) && 
     (this.frontv.indexOf(local.charAt(n + 1)) >= 0) ) { 
    break;
  if (!isLastChar(wdsz, n) && 
    (this.frontv.indexOf(local.charAt(n + 1)) >= 0)) {
    code.append('S');
  if (!isLastChar(wdsz, n + 1) && 
    isNextChar(local, n, 'G') && 
    (this.frontv.indexOf(local.charAt(n + 2)) >= 0)) { // DGE DGI DGY -> J 
  if (isLastChar(wdsz, n + 1) && 
    isNextChar(local, n, 'H')) {
    break;
  if (!isLastChar(wdsz, n + 1) &&  
    isNextChar(local,n,'H') && 
    !isVowel(local,n+2)) {
  if (!isLastChar(wdsz, n) && 
    (this.frontv.indexOf(local.charAt(n + 1)) >= 0) && 
    (!hard)) {

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

case 'B' :
  if ( isPreviousChar(local, n, 'M') && 
     isLastChar(wdsz, n) ) { // B is silent if word ends in MB
    break;
     !isLastChar(wdsz, n) && 
     (this.frontv.indexOf(local.charAt(n + 1)) >= 0) ) { 
    break;
  if (!isLastChar(wdsz, n) && 
    (this.frontv.indexOf(local.charAt(n + 1)) >= 0)) {
    code.append('S');
  if (!isLastChar(wdsz, n + 1) && 
    isNextChar(local, n, 'G') && 
    (this.frontv.indexOf(local.charAt(n + 2)) >= 0)) { // DGE DGI DGY -> J 
  if (isLastChar(wdsz, n + 1) && 
    isNextChar(local, n, 'H')) {
    break;
  if (!isLastChar(wdsz, n + 1) &&  
    isNextChar(local,n,'H') && 
    !isVowel(local,n+2)) {
  if (!isLastChar(wdsz, n) && 
    (this.frontv.indexOf(local.charAt(n + 1)) >= 0) && 
    (!hard)) {

代码示例来源:origin: FlexoVM/flexovm

case 'B' :
  if ( isPreviousChar(local, n, 'M') && 
     isLastChar(wdsz, n) ) { // B is silent if word ends in MB
    break;
     !isLastChar(wdsz, n) && 
     (this.frontv.indexOf(local.charAt(n + 1)) >= 0) ) { 
    break;
  if (!isLastChar(wdsz, n) && 
    (this.frontv.indexOf(local.charAt(n + 1)) >= 0)) {
    code.append('S');
  if (!isLastChar(wdsz, n + 1) && 
    isNextChar(local, n, 'G') && 
    (this.frontv.indexOf(local.charAt(n + 2)) >= 0)) { // DGE DGI DGY -> J 
  if (isLastChar(wdsz, n + 1) && 
    isNextChar(local, n, 'H')) {
    break;
  if (!isLastChar(wdsz, n + 1) &&  
    isNextChar(local,n,'H') && 
    !isVowel(local,n+2)) {
  if (!isLastChar(wdsz, n) && 
    (this.frontv.indexOf(local.charAt(n + 1)) >= 0) && 
    (!hard)) {

代码示例来源:origin: MobiVM/robovm

case 'B' :
  if ( isPreviousChar(local, n, 'M') && 
     isLastChar(wdsz, n) ) { // B is silent if word ends in MB
    break;
     !isLastChar(wdsz, n) && 
     (this.frontv.indexOf(local.charAt(n + 1)) >= 0) ) { 
    break;
  if (!isLastChar(wdsz, n) && 
    (this.frontv.indexOf(local.charAt(n + 1)) >= 0)) {
    code.append('S');
  if (!isLastChar(wdsz, n + 1) && 
    isNextChar(local, n, 'G') && 
    (this.frontv.indexOf(local.charAt(n + 2)) >= 0)) { // DGE DGI DGY -> J 
  if (isLastChar(wdsz, n + 1) && 
    isNextChar(local, n, 'H')) {
    break;
  if (!isLastChar(wdsz, n + 1) &&  
    isNextChar(local,n,'H') && 
    !isVowel(local,n+2)) {
  if (!isLastChar(wdsz, n) && 
    (this.frontv.indexOf(local.charAt(n + 1)) >= 0) && 
    (!hard)) {

代码示例来源:origin: ibinti/bugvm

case 'B':
  if ( isPreviousChar(local, n, 'M') &&
     isLastChar(wdsz, n) ) { // B is silent if word ends in MB
    break;
     !isLastChar(wdsz, n) &&
     FRONTV.indexOf(local.charAt(n + 1)) >= 0 ) {
    break;
  if (!isLastChar(wdsz, n) &&
    FRONTV.indexOf(local.charAt(n + 1)) >= 0) {
    code.append('S');
  if (!isLastChar(wdsz, n + 1) &&
    isNextChar(local, n, 'G') &&
    FRONTV.indexOf(local.charAt(n + 2)) >= 0) { // DGE DGI DGY -> J
  if (isLastChar(wdsz, n + 1) &&
    isNextChar(local, n, 'H')) {
    break;
  if (!isLastChar(wdsz, n + 1) &&
    isNextChar(local,n,'H') &&
    !isVowel(local,n+2)) {
  if (!isLastChar(wdsz, n) &&
    FRONTV.indexOf(local.charAt(n + 1)) >= 0 &&
    !hard) {

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-codec

case 'B' :
  if ( isPreviousChar(local, n, 'M') && 
     isLastChar(wdsz, n) ) { // B is silent if word ends in MB
    break;
     !isLastChar(wdsz, n) && 
     (this.frontv.indexOf(local.charAt(n + 1)) >= 0) ) { 
    break;
  if (!isLastChar(wdsz, n) && 
    (this.frontv.indexOf(local.charAt(n + 1)) >= 0)) {
    code.append('S');
  if (!isLastChar(wdsz, n + 1) && 
    isNextChar(local, n, 'G') && 
    (this.frontv.indexOf(local.charAt(n + 2)) >= 0)) { // DGE DGI DGY -> J 
  if (isLastChar(wdsz, n + 1) && 
    isNextChar(local, n, 'H')) {
    break;
  if (!isLastChar(wdsz, n + 1) &&  
    isNextChar(local,n,'H') && 
    !isVowel(local,n+2)) {
  if (!isLastChar(wdsz, n) && 
    (this.frontv.indexOf(local.charAt(n + 1)) >= 0) && 
    (!hard)) {

代码示例来源:origin: com.gluonhq/robovm-rt

case 'B' :
  if ( isPreviousChar(local, n, 'M') && 
     isLastChar(wdsz, n) ) { // B is silent if word ends in MB
    break;
     !isLastChar(wdsz, n) && 
     (this.frontv.indexOf(local.charAt(n + 1)) >= 0) ) { 
    break;
  if (!isLastChar(wdsz, n) && 
    (this.frontv.indexOf(local.charAt(n + 1)) >= 0)) {
    code.append('S');
  if (!isLastChar(wdsz, n + 1) && 
    isNextChar(local, n, 'G') && 
    (this.frontv.indexOf(local.charAt(n + 2)) >= 0)) { // DGE DGI DGY -> J 
  if (isLastChar(wdsz, n + 1) && 
    isNextChar(local, n, 'H')) {
    break;
  if (!isLastChar(wdsz, n + 1) &&  
    isNextChar(local,n,'H') && 
    !isVowel(local,n+2)) {
  if (!isLastChar(wdsz, n) && 
    (this.frontv.indexOf(local.charAt(n + 1)) >= 0) && 
    (!hard)) {

代码示例来源:origin: org.apache.directory.api/api-ldap-client-all

case 'B':
  if ( isPreviousChar(local, n, 'M') &&
     isLastChar(wdsz, n) ) { // B is silent if word ends in MB
    break;
     !isLastChar(wdsz, n) &&
     FRONTV.indexOf(local.charAt(n + 1)) >= 0 ) {
    break;
  if (!isLastChar(wdsz, n) &&
    FRONTV.indexOf(local.charAt(n + 1)) >= 0) {
    code.append('S');
  if (!isLastChar(wdsz, n + 1) &&
    isNextChar(local, n, 'G') &&
    FRONTV.indexOf(local.charAt(n + 2)) >= 0) { // DGE DGI DGY -> J
  if (isLastChar(wdsz, n + 1) &&
    isNextChar(local, n, 'H')) {
    break;
  if (!isLastChar(wdsz, n + 1) &&
    isNextChar(local,n,'H') &&
    !isVowel(local,n+2)) {
  if (!isLastChar(wdsz, n) &&
    FRONTV.indexOf(local.charAt(n + 1)) >= 0 &&
    !hard) {

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

case 'B':
  if ( isPreviousChar(local, n, 'M') &&
     isLastChar(wdsz, n) ) { // B is silent if word ends in MB
    break;
     !isLastChar(wdsz, n) &&
     FRONTV.indexOf(local.charAt(n + 1)) >= 0 ) {
    break;
  if (!isLastChar(wdsz, n) &&
    FRONTV.indexOf(local.charAt(n + 1)) >= 0) {
    code.append('S');
  if (!isLastChar(wdsz, n + 1) &&
    isNextChar(local, n, 'G') &&
    FRONTV.indexOf(local.charAt(n + 2)) >= 0) { // DGE DGI DGY -> J
  if (isLastChar(wdsz, n + 1) &&
    isNextChar(local, n, 'H')) {
    break;
  if (!isLastChar(wdsz, n + 1) &&
    isNextChar(local,n,'H') &&
    !isVowel(local,n+2)) {
  if (!isLastChar(wdsz, n) &&
    FRONTV.indexOf(local.charAt(n + 1)) >= 0 &&
    !hard) {

代码示例来源:origin: Nextdoor/bender

case 'B':
  if ( isPreviousChar(local, n, 'M') &&
     isLastChar(wdsz, n) ) { // B is silent if word ends in MB
    break;
     !isLastChar(wdsz, n) &&
     FRONTV.indexOf(local.charAt(n + 1)) >= 0 ) {
    break;
  if (!isLastChar(wdsz, n) &&
    FRONTV.indexOf(local.charAt(n + 1)) >= 0) {
    code.append('S');
  if (!isLastChar(wdsz, n + 1) &&
    isNextChar(local, n, 'G') &&
    FRONTV.indexOf(local.charAt(n + 2)) >= 0) { // DGE DGI DGY -> J
  if (isLastChar(wdsz, n + 1) &&
    isNextChar(local, n, 'H')) {
    break;
  if (!isLastChar(wdsz, n + 1) &&
    isNextChar(local,n,'H') &&
    !isVowel(local,n+2)) {
  if (!isLastChar(wdsz, n) &&
    FRONTV.indexOf(local.charAt(n + 1)) >= 0 &&
    !hard) {

代码示例来源:origin: com.bugvm/bugvm-rt

case 'B':
  if ( isPreviousChar(local, n, 'M') &&
     isLastChar(wdsz, n) ) { // B is silent if word ends in MB
    break;
     !isLastChar(wdsz, n) &&
     FRONTV.indexOf(local.charAt(n + 1)) >= 0 ) {
    break;
  if (!isLastChar(wdsz, n) &&
    FRONTV.indexOf(local.charAt(n + 1)) >= 0) {
    code.append('S');
  if (!isLastChar(wdsz, n + 1) &&
    isNextChar(local, n, 'G') &&
    FRONTV.indexOf(local.charAt(n + 2)) >= 0) { // DGE DGI DGY -> J
  if (isLastChar(wdsz, n + 1) &&
    isNextChar(local, n, 'H')) {
    break;
  if (!isLastChar(wdsz, n + 1) &&
    isNextChar(local,n,'H') &&
    !isVowel(local,n+2)) {
  if (!isLastChar(wdsz, n) &&
    FRONTV.indexOf(local.charAt(n + 1)) >= 0 &&
    !hard) {

相关文章