package com.sx.structures; public interface Iterator { boolean hasNext(); Object next(); }