Java List Last Item getLast(List list)

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

Description

get Last

License

Apache License

Parameter

Parameter Description
T a parameter
list [!list.isEmpty()]

Return

the last element of the list

Declaration

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

Method Source Code


//package com.java2s;
/*/* www. j  a  v a 2  s . com*/
 * Copyright 2015 JBoss, by Red Hat, Inc
 *
 * 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 {
    /**
     * @param <T>
     * @param list [!list.isEmpty()]
     * @return the last element of the list
     */
    public static <T> T getLast(List<T> list) {
        return list.get(list.size() - 1);
    }
}

Related

  1. getLast(List elements)
  2. getLast(List items)
  3. getLast(List l)
  4. getLast(List list)
  5. getLast(List list)
  6. getLast(List list)
  7. getLast(List list)
  8. getLast(List list)
  9. getLast(List list)