📄 inlink.java
字号:
/** * Copyright 2005 The Apache Software Foundation * * 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. */package org.apache.nutch.crawl;import java.io.*;import org.apache.hadoop.io.*;/* An incoming link to a page. */public class Inlink implements Writable { private String fromUrl; private String anchor; public Inlink() {} public Inlink(String fromUrl, String anchor) { this.fromUrl = fromUrl; this.anchor = anchor; } public void readFields(DataInput in) throws IOException { fromUrl = UTF8.readString(in); anchor = UTF8.readString(in); } /** Skips over one Inlink in the input. */ public static void skip(DataInput in) throws IOException { UTF8.skip(in); // skip fromUrl UTF8.skip(in); // skip anchor } public void write(DataOutput out) throws IOException { UTF8.writeString(out, fromUrl); UTF8.writeString(out, anchor); } public static Inlink read(DataInput in) throws IOException { Inlink inlink = new Inlink(); inlink.readFields(in); return inlink; } public String getFromUrl() { return fromUrl; } public String getAnchor() { return anchor; } public boolean equals(Object o) { if (!(o instanceof Inlink)) return false; Inlink other = (Inlink)o; return this.fromUrl.equals(other.fromUrl) && this.anchor.equals(other.anchor); } public int hashCode() { return fromUrl.hashCode() ^ anchor.hashCode(); } public String toString() { return "fromUrl: " + fromUrl + " anchor: " + anchor; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -