Java UUID Create getUUIDForSql(UUID uuid)

Here you can find the source of getUUIDForSql(UUID uuid)

Description

get UUID For Sql

License

Open Source License

Declaration

public static Object getUUIDForSql(UUID uuid) 

Method Source Code

//package com.java2s;
/**//from   ww  w .j a v  a2s.co m
 Copyright (c) 2013, Amit Lieberman
All rights reserved.
    
           GNU LESSER GENERAL PUBLIC LICENSE
               Version 3, 29 June 2007
    
 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.
    
    
  This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License
    
 * Created with love
 * User: shpandrak
 * Date: 10/20/12
 * Time: 10:37
 */

import java.util.*;

public class Main {
    public static Object getUUIDForSql(UUID uuid) {
        if (uuid != null)
            return uuid;
        return null;

    }
}

Related

  1. genRandomString(int len)
  2. get36UUID()
  3. getUUID()
  4. getUUID()
  5. getUUID(String id)
  6. getUUIDValue(String url, String key)
  7. isUUID(String string)
  8. parseUuid(String s)
  9. sizeOfUUID(UUID uuid)