clear Collection's content - Android java.util

Android examples for java.util:Collection

Description

clear Collection's content

Demo Code


//package com.java2s;

import java.util.Collection;

public class Main {
    public static void clear(Collection c) {
        if (c != null) {
            c.clear();//from w  w  w. j av a 2  s .  c  o  m
        }
    }
}

Related Tutorials