Here you can find the source of getLast(final List
Parameter | Description |
---|---|
T | the generic type |
list | the List. |
public static <T> T getLast(final List<T> list)
//package com.java2s; /**// w w w .j av a2 s . c o m * Copyright (C) 2007 Asterios Raptis * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.util.List; public class Main { /** * Gets the last object from the given List. * * @param <T> * the generic type * @param list * the List. * @return Returns the last object from the given List or null if the List is empty or null. */ public static <T> T getLast(final List<T> list) { if (!isEmpty(list) && 0 < list.size()) { return list.get(list.size() - 1); } return null; } /** * Checks if a List is null or empty. * * @param <T> * the generic type * @param list * The List to check. * @return true if the list is null or empty otherwise false. */ public static <T> boolean isEmpty(final List<T> list) { return list == null || list.isEmpty(); } }