Java List Last Item getLast(final List list)

Here you can find the source of getLast(final List list)

Description

Gets the last object from the given List.

License

Apache License

Parameter

Parameter Description
T the generic type
list the List.

Return

Returns the last object from the given List or null if the List is empty or null.

Declaration

public static <T> T getLast(final List<T> list) 

Method Source Code

//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();
    }
}

Related

  1. addLast(T e, List list)
  2. addLastElement(List list, T element)
  3. buildPathFromComponentsUpToIndex(final List pathComponents, final int lastIndex)
  4. flattenByteSegments(List byteSegments, int eachSegmentButLastLength, int lastSegmentLength)
  5. getLast(final List list)
  6. getLast(List list)
  7. getLast(List aList)
  8. getLast(List elements)
  9. getLast(List items)