// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.fasterxml.jackson.databind.util; import java.util.Iterator; import java.util.NoSuchElementException; public class EmptyIterator implements Iterator { private static final EmptyIterator instance = new EmptyIterator(); public EmptyIterator() { } public static Iterator instance() { return instance; } public boolean hasNext() { return false; } public Object next() { throw new NoSuchElementException(); } public void remove() { throw new UnsupportedOperationException(); } }