All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.softicar.platform.common.core.number.parser.LongParser Maven / Gradle / Ivy

Go to download

The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.

There is a newer version: 50.0.0
Show newest version
package com.softicar.platform.common.core.number.parser;

import com.softicar.platform.common.core.utils.DevNull;
import java.util.Optional;

/**
 * Utility methods for parsing {@link Long}.
 *
 * @author Oliver Richers
 */
public class LongParser {

	/**
	 * Checks if the given string is a valid {@link Long} number.
	 * 

* If the given string is null, this method returns false. * * @param string * the string to parse (may be null) * @return true if the given string is a valid {@link Long} literal */ public static boolean isLong(String string) { return parse(string).isPresent(); } /** * Tries to parse the given string into a {@link Long}. *

* This method returns {@link Optional#empty()} if the given string cannot * be parsed into a valid integer value in the range [{@link Long#MIN_VALUE} * , {@link Long#MAX_VALUE}]. *

* If the given string is null, this method also returns * {@link Optional#empty()}. * * @param string * the string to parse (may be null) * @return a {@link Optional} holding the parsed integer value or not */ public static Optional parse(String string) { if (string == null) { return Optional.empty(); } try { return Optional.of(Long.parseLong(string)); } catch (NumberFormatException exception) { DevNull.swallow(exception); return Optional.empty(); } } public static Long parseLong(String string) { return parse(string).orElse(null); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy