Java String Ends With EndsWith(String x, String z)

Here you can find the source of EndsWith(String x, String z)

Description

Ends With

License

Open Source License

Declaration

public final static boolean EndsWith(String x, String z) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public final static boolean EndsWith(String x, String z) {
        return x.endsWith(z);
    }//from   w  w w  . j ava 2  s  . c  om
}

Related

  1. EndsWith(String str, String suffix, int strStartPos)
  2. endsWith(String string, char character)
  3. endsWith(String string, String... end)
  4. endsWith(String string, String... endsWithText)
  5. endsWith(String value, String[] suffixes)
  6. endsWith(String[] endsWith, String line)
  7. endsWith(String[] searchStrings, String text)
  8. endsWith(String[] searchStrings, String text)
  9. endsWith(StringBuffer buf, String s)