Java Number Max Value max(String left, String right)

Here you can find the source of max(String left, String right)

Description

max

License

Open Source License

Declaration

private static String max(String left, String right) 

Method Source Code

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

public class Main {
    private static String max(String left, String right) {
        return left.compareTo(right) < 0 ? right : left;
    }//from w w  w  . j  a v a 2 s .c o m
}

Related

  1. max(Number num1, Number num2)
  2. Max(Object in)
  3. max(Object o1, Object o2)
  4. max(String a, String b)
  5. max(String content, int max, String dotDotDot)
  6. max(String name)
  7. max(String s)
  8. max(T a, T b)
  9. max(T a, T b)