WASTE SEGREGATION

Map> wasteSeparationData = new LinkedHashMap<>();

 

wasteSeparationData.put("METAL AND PLASTIC", Arrays.asList(

    "WHAT GOES IN:",

    "• plastic bottles (without caps)",

    "• plastic packaging for food products",

    "• multi-material packaging (e.g. milk and juice cartons)",

    "• plastic bags, carrier bags, foil packaging",

    "• empty cosmetic packaging",

    "• plastic caps, cans, caps and metal lids",

    "WHAT DOESN’T GO IN:",

    "• packaging with contents",

    "• electronic and electrical equipment",

    "• batteries and accumulators",

    "• paint, varnish and oil cans"

));

 

wasteSeparationData.put("GLASS", Arrays.asList(

    "WHAT GOES IN:",

    "• glass bottles and jars from beverages and food",

    "• glass cosmetic containers (without plastic parts)",

    "WHAT DOESN’T GO IN:",

    "• ceramics, porcelain, earthenware",

    "• window glass, mirrors",

    "• light bulbs, fluorescent lamps",

    "• heat-resistant glass, glasses, crystal"

));

 

wasteSeparationData.put("BIO (BIODEGRADABLE WASTE)", Arrays.asList(

    "WHAT GOES IN:",

    "• vegetable and fruit leftovers, peelings",

    "• coffee and tea grounds",

    "• eggshells",

    "• wilted flowers, potted plants",

    "WHAT DOESN’T GO IN:",

    "• meat, fish, bones",

    "• cooking oil",

    "• animal waste",

    "• coal ash"

));

 

wasteSeparationData.put("PAPER", Arrays.asList(

    "WHAT GOES IN:",

    "• newspapers, magazines, books (without hardcovers)",

    "• office paper, notebooks",

    "• cardboard, paper bags",

    "WHAT DOESN’T GO IN:",

    "• paper soiled with grease or food",

    "• paper coated with plastic or foil",

    "• paper towels, disposable nappies"

));

 

wasteSeparationData.put("MIXED WASTE", Arrays.asList(

    "WHAT GOES IN:",

    "• everything that cannot be assigned to the above categories",

    "WHAT DOESN’T GO IN:",

    "• hazardous waste (chemicals, batteries, paints)",

    "• construction and renovation waste",

    "• electronic waste (TV/household appliances)"

));