Android Open Source - AndroidImageScraper Image U R L






From Project

Back to project page AndroidImageScraper.

License

The source code is released under:

Apache License

If you think the Android project AndroidImageScraper listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package im.delight.imagescraper;
/*w w w . jav  a2s.  co m*/
/**
 * Copyright 2013 www.delight.im <info@delight.im>
 *
 * 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.Comparator;

public class ImageURL implements Comparable<ImageURL> {

  private String mURL;
  private int mFileSize;

  public ImageURL(String url, int fileSize) {
    mURL = url;
    mFileSize = fileSize;
  }

  public String getURL() {
    return mURL;
  }

  public long getFileSize() {
    return mFileSize;
  }

    public static Comparator<ImageURL> COMPARATOR = new Comparator<ImageURL>() {

      @Override
    public int compare(ImageURL a, ImageURL b) {
      if (a.equals(b)) {
        return 0;
      }
        long other = a.getFileSize();
        long current = b.getFileSize();
          if (current > other) {
            return 1;
          }
          else {
            if (current < other) {
              return -1;
            }
            else {
              return 0;
            }
          }
    }

    };

  @Override
  public int compareTo(ImageURL arg0) {
    return COMPARATOR.compare(this, arg0);
  }

  @Override
  public int hashCode() {
    final int prime = 31;
    int result = 1;
    result = prime * result + ((mURL == null) ? 0 : mURL.hashCode());
    return result;
  }

  @Override
  public boolean equals(Object obj) {
    if (this == obj) {
      return true;
    }
    if (obj == null) {
      return false;
    }
    if (getClass() != obj.getClass()) {
      return false;
    }
    ImageURL other = (ImageURL) obj;
    if (mURL == null) {
      if (other.mURL != null) {
        return false;
      }
    }
    else if (!mURL.equals(other.mURL)) {
      return false;
    }
    return true;
  }

  @Override
  public String toString() {
    return "ImageURL [mURL=" + mURL + ", mFileSize=" + mFileSize + "]";
  }

}




Java Source Code List

im.delight.imagescraper.ImageCheckerCallback.java
im.delight.imagescraper.ImageCheckerTask.java
im.delight.imagescraper.ImageChecker.java
im.delight.imagescraper.ImageScraperCallback.java
im.delight.imagescraper.ImageScraperResult.java
im.delight.imagescraper.ImageScraper.java
im.delight.imagescraper.ImageURLFinder.java
im.delight.imagescraper.ImageURL.java